Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.31 KB

mmcv_ivmcl.md

File metadata and controls

34 lines (28 loc) · 1.31 KB

Modifications of MMCV

The code is maintained to be almost the same as the remote master. When a new module is added, we adopt the naive way of adding a file with the postfix _ivmcl, rather than modifying codes in existing files. By doing this, we will only need to update __init__.py files.

  • Add Attentive Normalization(ECCV2020).

    • see the new python files with the postfix _ivmcl in

      iVMCL-Release
      ├── mmcv
          ├── mmcv
              ├── cnn
                  ├── bricks
                      ├── norm_ivmcl.py
                      ├── activation_ivmcl.py
                      ├── plugin_ivmcl.py
      
  • Add an operator of computing Histogram of Oriented Gradient (HOG) features.

    • see the cpp and cuda kernel files in

      iVMCL-Release
      ├── mmcv
          ├── mmcv
              ├── ops
                  ├── extract_hog.py
                  ├── csrc
                      ├── extract_hog_cuda_kernel.cuh
                      ├── pytorch
                          ├── extract_hog.cpp
                          ├── extract_hog_cuda.cu