1. 14 Oct, 2021 3 commits
  2. 13 Oct, 2021 3 commits
    • dingchang's avatar
      [Feature] Add fps op from mmdet3d (#1337) · 63a6cbe9
      dingchang authored
      * add ops (furthest point sample) in mmdet3d
      
      * refactor code
      
      * refactor code
      
      * fix typo
      
      * fix typo
      
      * fix typo
      
      * refactor code
      
      * fix typo
      
      * define DIVUP in common_cuda_helper.hpp
      63a6cbe9
    • Eugene Liu's avatar
      Add Deformable Conv CustomOp for onnxruntime (#1343) · 599163e6
      Eugene Liu authored
      * add onnx dcn
      
      * replace gemm with torch C++ api
      
      * small update
      
      * fix cpp clang format
      
      * pefer generic GEMM than torch ATen library
      
      * addressing comments
      
      * add ops path check
      599163e6
    • Zaida Zhou's avatar
      Polish readme (#1320) · 48d5b095
      Zaida Zhou authored
      * [Docs] Polish README
      
      * [Docs] Polish README
      
      * [Docs] Polish README
      
      * fix typo
      
      * update qq link
      
      * fix typo
      
      * update LICENSES.md
      48d5b095
  3. 04 Oct, 2021 1 commit
  4. 24 Sep, 2021 4 commits
  5. 23 Sep, 2021 2 commits
  6. 14 Sep, 2021 1 commit
    • Zaida Zhou's avatar
      [Docs] Use PyTorch sphinx theme (#1321) · 1216e5fe
      Zaida Zhou authored
      * [Docs] Use PyTorch sphinx theme
      
      * add sphinx-copybutton
      
      * add twitter and zhihu link
      
      * remove shpinx_rtd_theme from doc.xtx
      
      * update docs.txt
      
      * update conf.py
      1216e5fe
  7. 07 Sep, 2021 1 commit
  8. 23 Aug, 2021 5 commits
  9. 22 Aug, 2021 1 commit
  10. 19 Aug, 2021 1 commit
  11. 17 Aug, 2021 2 commits
  12. 10 Aug, 2021 1 commit
    • Zaida Zhou's avatar
      [Refactor] Refactor the directory of csrc (#1206) · dfb48c87
      Zaida Zhou authored
      
      
      * [Refactor] Refactor the csrc directory
      
      * update MANIFEST.in
      
      * fix hip
      
      * add csrc readme
      
      * trailing whitespace
      
      * fix syntax error in setup.py
      
      * add compatibility docs
      
      * move parrots_cudawarpfunction.cuh to common/cuda
      
      * fix grammar, update directory tree
      
      * fix MANIFEST.in
      
      * Add new structre of csrc in compatibility.md
      
      * Add original structre of csrc in compatibility.md
      
      * fix typo
      
      * remove TODO
      
      * modify according to comment
      
      * format
      Co-authored-by: default avatargrimoire <yaoqian@sensetime.com>
      dfb48c87
  13. 09 Aug, 2021 1 commit
    • Miao Zheng's avatar
      [Docs] Add PR document (#1209) · 94a677de
      Miao Zheng authored
      
      
      * [Docs] Add PR document
      
      * format
      
      * idx modify
      
      * revise according to comments
      
      * add blank line
      
      * grammar
      
      * insert blank line after title
      
      * revise according to comments
      
      * revise according to comments
      
      * typo
      
      * resize image3
      
      * lint
      
      * del print
      
      * fix lint
      
      * del unused
      Co-authored-by: default avatarzhouzaida <zhouzaida@163.com>
      94a677de
  14. 20 Jul, 2021 1 commit
  15. 07 Jul, 2021 1 commit
    • Zaida Zhou's avatar
      [Docs] Build Chinese docs (#1073) · db580dda
      Zaida Zhou authored
      * Remove _build directroy in docs_zh_CN
      
      * Change utils title to Chinese
      
      * Translate documents
      
      * Translate documents
      
      * Use symbolic link to avoid repeated images
      
      * Use symbolic link to avoid repeated images
      
      * fix readme.md
      
      * update copyright
      
      * refactor docs
      
      * rename title to Chinese
      db580dda
  16. 02 Jul, 2021 1 commit
    • Zaida Zhou's avatar
      [Docs] Refactor docs (#1102) · 66cefaff
      Zaida Zhou authored
      * [Docs] Refactor documentation
      
      * [Docs] Refactor documentation
      
      * refactor docs
      
      * refactor docs
      
      * set sphinx==3.1.2
      
      * fix typo
      
      * modify according to comment
      
      * modify according to comment
      
      * modify according to comment
      
      * [Docs] delete unnecessary file
      
      * fix title
      
      * rename
      
      * rename
      66cefaff
  17. 28 Jun, 2021 1 commit
  18. 25 Jun, 2021 1 commit
  19. 16 Jun, 2021 1 commit
  20. 11 Jun, 2021 1 commit
  21. 09 Jun, 2021 1 commit
  22. 31 May, 2021 1 commit
    • SemyonBevzuk's avatar
      [Feature] NMS update (#957) · bf2c9fa8
      SemyonBevzuk authored
      
      
      * Add score_threshold and max_num to NMS
      
      * Fix codestyle
      
      * Fix codestyle
      
      * Fix inds in nms
      
      * Update nms docstring
      
      * Move score_threshold and max_num arguments
      
      * Fix args order in docstring
      
      * fix lint of c++ file
      
      * Remove torch.onnx.is_in_onnx_export() and add max_num to batched_nms for separate classes.
      
      * Rewrote max_num handling in NMSop.symbolic
      
      * Added processing max_output_boxes_per_class when exporting to TensorRT
      
      * Added score_threshold and max_num for NMS in test_onnx.py and test_tensorrt.py
      
      * Remove _is_value(max_num)
      
      * fix ci errors with torch==1.3.1
      
      * Update test_batched_nms in test_nms.py
      
      * Added tests for preprocess_onnx
      
      * Moved 'test_tensorrt_preprocess.py' and 'preprocess', updated 'remove_tmp_file'.
      
      * Update mmcv/tensorrt/__init__.py
      
      * Fix segfault torch==1.3.1 (remove onnx.checker.check_model)
      
      * Returned 'onnx.checker.check_model' with torch version check
      
      * Changed torch version from 1.3.1 to 1.4.0
      
      * update version check
      
      * remove check for onnx
      Co-authored-by: default avatarmaningsheng <maningsheng@sensetime.com>
      bf2c9fa8
  23. 25 May, 2021 1 commit
  24. 24 May, 2021 2 commits
  25. 13 May, 2021 1 commit
    • Zaida Zhou's avatar
      [Docs] Update weight initialization in cnn.md (#912) · a1d3bf1c
      Zaida Zhou authored
      * [Docs] Update weight initialization in cnn.md
      
      * Update cnn.md
      
      * [Docs] Update weight initialization in cnn.md
      
      * [Docs] Update weight initialization in cnn.md
      
      * [Docs] Update weight initialization in cnn.md
      
      * [Docs] Update weight initialization in cnn.md
      
      * [Docs] Update weight initialization in cnn.md
      
      * modify docs according to comments
      
      * modify docs for weight init according to the comment
      
      * change init_weight() to init_weights()
      
      * modify according to comment
      a1d3bf1c
  26. 10 May, 2021 1 commit
    • v-qjqs's avatar
      Support custom operators cummax and cummin for onnxruntime (#1010) · 934b549e
      v-qjqs authored
      * support custom op `mmcv::cummax` for onnxruntime in mmcv
      
      * fix clang-format lint error
      
      * support mmcv::cummin, reformat codes
      
      * fix merge from master
      
      * add docs for mmcv::cummax and mmcv::cummin
      
      * format doc
      
      * add assertion for torch version, when exporting `cummax` to onnx
      
      * add more comments for torch version
      
      * handle exporting to onnx in `soft_nms`
      
      * commit for test_onnx
      
      * remove `is_in_onnx_export` in softnms
      
      * add more comments
      
      * fix c++ lint error
      
      * add known issues doc for `cummax`
      
      * fix known issues doc
      934b549e