1. 19 Mar, 2021 1 commit
  2. 07 Feb, 2021 1 commit
    • Miao Zheng's avatar
      add initializers and BaseModule for unified parameter initialization (#780) · a4c37026
      Miao Zheng authored
      * add initializers and BaseModule for unified parameter initialization
      
      * fix circle import
      
      * bug fix
      
      * add is_init flag in BaseModule
      
      * fix docstring
      
      * sort import and fix doc format
      
      * fix bug
      
      * fix docformat and double quote string
      
      * fix import sort
      
      * import sort
      
      * sort import
      
      * revise according to comments
      
      * fix doc format
      
      * revise according to comments
      
      * revise import and fix typo
      
      * polish code
      
      * revise minors
      
      * revice minors
      
      * revise apply function
      
      * revise bias initialization with probability
      
      * add type test for bias_prob
      
      * revise minors
      a4c37026
  3. 24 Dec, 2020 1 commit
  4. 22 Dec, 2020 1 commit
  5. 09 Dec, 2020 1 commit
  6. 19 Nov, 2020 1 commit
  7. 18 Nov, 2020 2 commits
  8. 15 Nov, 2020 2 commits
  9. 31 Oct, 2020 1 commit
  10. 06 Oct, 2020 1 commit
    • Wenwei Zhang's avatar
      Fix wrappers version comparison (#602) · 005c4087
      Wenwei Zhang authored
      * add version check in wrappers
      
      * fix assersion
      
      * use digital version for version comparison
      
      * fix unit tests
      
      * reformat
      
      * fall back to compare the first two version
      
      * fix unittest
      
      * fix unittest
      
      * fix unit test
      
      * clean unnecessary change
      005c4087
  11. 27 Sep, 2020 1 commit
    • GT9505's avatar
      register deconv in CONV_LAYERS (#582) · acee61d7
      GT9505 authored
      * register deconv in CONV_LAYERS
      
      * use ConvTranspose2d implemented in MMCV
      
      * remove repetitive register_module
      
      * update
      
      * add unittest for deconv
      acee61d7
  12. 12 Sep, 2020 1 commit
    • Wenwei Zhang's avatar
      Mv wrappers into bricks and use wrappers in registry (#550) · c937d395
      Wenwei Zhang authored
      * Mv wrappers into bricks and use wrappers in registry
      
      * resolve import issues
      
      * fix import issues
      
      * set nn op forward to torch 1.6.1
      
      * fix CI bug and add warning
      
      * Fix CI by using patch mock
      
      * mv warnings inside deprecated module's initialization
      c937d395
  13. 09 Sep, 2020 1 commit
  14. 26 Aug, 2020 1 commit
    • Xiaojie Li's avatar
      add Swish activation (#522) · c3d8eb34
      Xiaojie Li authored
      
      
      * update impad
      
      * fix docstring
      
      * add shape for impad
      
      * fix unit test
      
      * remove old version & fix doc
      
      * fix linting
      
      * fix doc
      
      * add linear decay learning rate scheduler
      
      * fix impad
      
      * fix setup.cfg
      
      * fix linting
      
      * add yapf
      
      * add swish
      
      * fix lr_updater
      
      * fix lr_updater.py
      
      * update swish
      
      * add swish
      
      * fix inplace
      
      * fix typo
      Co-authored-by: default avatarlixiaojie <lixiaojie@sensetime.com>
      c3d8eb34
  15. 09 Aug, 2020 1 commit
  16. 17 Jul, 2020 1 commit
  17. 15 Jul, 2020 1 commit
  18. 08 Jul, 2020 1 commit
  19. 02 Jul, 2020 1 commit
  20. 28 Jun, 2020 2 commits
    • louzana's avatar
      fix bug of building ConvModule with HSigmoid using inplace=True and a… (#369) · 2c6fc5fd
      louzana authored
      * fix bug of building ConvModule with HSigmoid using inplace=True and add corresponding unittest
      
      * fix linting
      2c6fc5fd
    • zhuyuanhao's avatar
      add ext ops, support parrots (#310) · c0f5492e
      zhuyuanhao authored
      
      
      * add ext ops, support parrots
      
      * fix lint
      
      * fix lint
      
      * update op from mmdetection
      
      * support non-pytorch env
      
      * fix import bug
      
      * test not import mmcv.op
      
      * rename mmcv.op to mmcv.ops
      
      * fix compile warning
      
      * 1. fix syncbn warning in pytorch 1.5
      2. support only cpu compile
      3. add point_sample from mmdet
      
      * fix text bug
      
      * update docstrings
      
      * fix line endings
      
      * minor updates
      
      * remove non_local from ops
      
      * bug fix for nonlocal2d
      
      * rename ops_ext to _ext and _ext to _flow_warp_ext
      
      * update the doc
      
      * try clang-format github action
      
      * fix github action
      
      * add ops to api.rst
      
      * fix cpp format
      
      * fix clang format issues
      
      * remove .clang-format
      Co-authored-by: default avatarKai Chen <chenkaidev@gmail.com>
      c0f5492e
  21. 26 Jun, 2020 1 commit
    • Jintao Lin's avatar
      Add utils to calculate model complexity and adjust folder structure for mmcv/cnn/utils . (#366) · 9bc0b96d
      Jintao Lin authored
      * Add utils to calculate model complexity info
      
      * remove _InstanceNorm in unittest
      
      * add docstring and increase unittest coverage
      
      * fix deconv_flops_counter_hook to accept different data shape
      
      * test when model is not a common instance
      
      * put flops_counter.py and weight_init.py into mmcv/cnn/utils folder
      
      * fix import name
      
      * reformat some docstrings
      
      * update the scripts with latest one and remove redundant codes
      
      * directly represent a model without string and eval()
      
      * reformat code
      9bc0b96d
  22. 19 Jun, 2020 1 commit
    • louzana's avatar
      add hswish and hsigmoid (#358) · fef7b2fe
      louzana authored
      * add hswish and hsigmoid
      
      * fix linting
      
      * fix linting
      
      * delete useless staticmethod in cnn/bricks/hsigmoid.py
      
      * forward(x) ==> forward(seld, x)
      
      * add unittests for hsigmoid and hswish
      
      * use torch.equal instead of numpy.equal
      fef7b2fe
  23. 18 Jun, 2020 1 commit
    • Jintao Lin's avatar
      Add `_NonLocalNd` module (#331) · dcc20f3a
      Jintao Lin authored
      * add non_local module
      
      * rewrite non local module comments
      
      * perfect docstring and adjust init function
      
      * not to init norm layer
      
      * Correct initialize when there is a norm
      
      * set normal method for both embedded_gaussian and dot_product
      dcc20f3a
  24. 10 Jun, 2020 1 commit
  25. 01 Jun, 2020 1 commit
  26. 13 May, 2020 1 commit
  27. 12 May, 2020 1 commit
  28. 08 May, 2020 1 commit
  29. 05 May, 2020 1 commit
  30. 30 Apr, 2020 1 commit