Skip to content
Snippets Groups Projects
  1. Sep 04, 2020
  2. Sep 03, 2020
  3. Aug 31, 2020
    • T.T. Tang's avatar
      YOLOv3 - Continue on #1695 (#3083) · dfbb6d6f
      T.T. Tang authored
      
      * Implement YOLOv3
      
      * Remove unused function
      
      * Update yolov3_ms_aug_273e.py
      
      Clean the comments in config file
      
      * Add README.md
      
      * port to mmdet-2.0 api
      
      * unify registry
      
      * port to ConvModule and remove ConvLayer
      
      * Refactor Backbone
      
      * Update README
      
      * Lint and format
      
      * Unify the class name
      
      * fix the `label - 1` problem
      
      * Move a lot hard-coded params to the __init__ function
      
      * Refactor YOLOV3Neck
      
      * Add norm_cfg and act_cfg to backbone
      
      * Update Config
      
      * Fix doc string
      
      * Fix nms (thanks to @LMerCy)
      
      * Add doc string
      
      * Update config
      
      * Remove pretrained in head and neck
      
      * Add support for conv_cfg in neck
      
      * Update mmdet/models/dense_heads/yolo_head.py
      
      Co-authored-by: default avatarJerry Jiarui XU <xvjiarui0826@gmail.com>
      
      * Update mmdet/models/dense_heads/yolo_head.py
      
      Co-authored-by: default avatarJerry Jiarui XU <xvjiarui0826@gmail.com>
      
      * Fix README.md
      
      * Fix typos
      
      * update config
      
      * flake8, yapf, docformatter, etc
      
      * Update README
      
      * Add conv_cfg to backbone and head
      
      * Move some config to arch_settings in backbone
      
      * Add doc strings and replace Warning with warnings.warn()
      
      * Fix bug.
      
      * Update doc
      
      * Add _frozen_stages for backbone
      
      * Update mmdet/models/backbones/darknet.py
      
      Co-authored-by: default avatarJerry Jiarui XU <xvjiarui0826@gmail.com>
      
      * Fix inplace bug
      
      * fix indent
      
      * refactor config
      
      * set 8GPU lr
      
      * fixed typo
      
      * update performance table
      
      * Resolve conversation
      
      * Add anchor generator and coder
      
      * fixed test
      
      * Finish refactor
      
      * refactor anchor order
      
      * fixed batch size
      
      * Fixed train_cfg
      
      * fix yolo assigner
      
      * clean up
      
      * Fixed format
      
      * Update model zoo
      
      * change to mmcv pretrain link
      
      * add test forward
      
      * fixed comma and docstring
      
      * Refactor loss
      
      * reformat
      
      * fixed avg_factor
      
      * revert to original
      
      * fixed format
      
      * update table
      
      * fixed BCE
      
      Co-authored-by: default avatarHaoyu Wu <haoyu.wu@wdc.com>
      Co-authored-by: default avatarHaoyu Wu <wuhy08@users.noreply.github.com>
      Co-authored-by: default avatarHaoyu Wu <wuhaoyu1989@gmail.com>
      Co-authored-by: default avatarJerry Jiarui XU <xvjiarui0826@gmail.com>
      Co-authored-by: default avatarxmpeng <1051323399@qq.com>
      dfbb6d6f
    • Cao Yuhang's avatar
      Bump to v2.4.0 · 5114e030
      Cao Yuhang authored
      5114e030
    • Wang Xinjiang's avatar
      Fix tutorial (#3658) · 83f0ca40
      Wang Xinjiang authored
      * Fix tutorial
      
      * small change
      83f0ca40
  4. Aug 30, 2020
    • Wang Xinjiang's avatar
      Custom imports (#3641) · e53caaf2
      Wang Xinjiang authored
      * Add custom_imports
      
      * Add tutorial
      
      * import import_modules_from_strings later to be compatible with previous mmcv versions
      e53caaf2
  5. Aug 24, 2020
    • Wenwei Zhang's avatar
      Update doc install (#3609) · 777dc96b
      Wenwei Zhang authored
      * Fix documentation, update installation doc
      
      * Update trouble shooting
      
      * Change mmcv version to 1.0.5 in CI
      
      * Update requirements
      
      * Test mmcv 1.1.0
      
      * Update CI requirements
      
      * Support mmcv 1.1.1
      777dc96b
  6. Aug 22, 2020
    • Wenwei Zhang's avatar
      Support evaluation on multiple datasets through ConcatDataset (#3522) · 3e0a0037
      Wenwei Zhang authored
      * support to evaluate concatenated dataset
      
      * rm pdb
      
      * update model zoo
      
      * resolve comments
      
      * Add assert during initialization
      
      * more flexible usage
      
      * add unittests
      
      * change order of unittests
      
      * Docs (new_datasets): update docs about concat dataset eval
      
      * Docs (new_datasets): update docs about concat dataset eval
      
      * Resolve comments
      
      * Resolve comments
      3e0a0037
    • Wenwei Zhang's avatar
      Update doc install (#3590) · 128174ae
      Wenwei Zhang authored
      * Fix documentation, update installation doc
      
      * Update trouble shooting
      
      * Change mmcv version to 1.0.5 in CI
      
      * Update requirements
      128174ae
  7. Aug 20, 2020
  8. Aug 13, 2020
  9. Aug 12, 2020
  10. Aug 09, 2020
  11. Aug 05, 2020
    • Wenwei Zhang's avatar
      add cornernet (#3492) · 57bbfb7e
      Wenwei Zhang authored
      * add cornernet
      
      * update model zoo
      57bbfb7e
    • Wenwei Zhang's avatar
      Bump to v2.3.0 (#3484) · f10b3066
      Wenwei Zhang authored
      * Add change log of v2.3.0
      
      * change minimum required version of mmcv to 1.0.5
      
      * rm tmp files
      
      * Update docs
      
      * Update docs and requirements
      
      * clean comments
      
      * update with 3392
      f10b3066
    • robin Han's avatar
      Pytorch2onnx (#3075) · 2f32a47a
      robin Han authored
      
      * Update pytorch2onnx.py which using new logic to convert pytorch to ONNX
      
      * use standard API to check whether in ONNX convert process
      
      * only compare the score value while verifying results between ONNX and pytorch
      
      * move import onnx before import torch, or something weird will happen
      
      * use real images for input
      
      * modifying the way of calling nms
      
      * modify docstring for bbox2result, and remove unnecessary part for onnx exporting
      
      * modify the 'Convert to ONNX' part in docs
      
      * replace or to | in docstring
      
      * update according to the latest mmcv
      
      * add normalize part
      
      * raise error while using low version mmcv
      
      * minor update
      
      * minor update
      
      Co-authored-by: default avatarJiarui XU <xvjiarui0826@gmail.com>
      2f32a47a
  12. Aug 04, 2020
    • Wenwei Zhang's avatar
      Remove git hash in __version__ (#3466) · 9d3f9b03
      Wenwei Zhang authored
      * update setup.py
      
      * update collect_env accordingly
      
      * rm VERSION and hardcode version.py
      
      * Use get_git_hash in mmcv
      
      * fix bug of version_file
      
      * use function to parse version
      
      * use __version__
      
      * only print first 7 of git hash
      
      * resolve comments
      
      * Fix torch install issue in action
      9d3f9b03
  13. Jul 30, 2020
  14. Jul 27, 2020
  15. Jul 24, 2020
    • Wenwei Zhang's avatar
      Refine doc (#3388) · 352cf7ff
      Wenwei Zhang authored
      * Refine docs and fix format issues
      
      * reformat
      
      * fix mock
      
      * Refine format
      
      * Reorganize tutorials
      
      * Update install doc
      
      * resolve comments
      352cf7ff
  16. Jul 23, 2020
  17. Jul 22, 2020
    • tianyuandu's avatar
      add CornerHead (#3036) · b05c17e3
      tianyuandu authored
      * add CornerHead
      
      * add unittest for CornerHead
      
      * fix formatting
      
      * fix a bug of ae_loss, update unittest for CornerHead
      
      * add docstring for corner_head.py
      
      * fix bug
      
      * add docstring for gaussian_target.py, formatting
      
      * fix unittest
      
      * use batched_nms
      
      * update docstrings
      
      * modify variable names
      
      * update docstrings
      
      * update figure in docstrings, add models/utils apis in html
      
      * update docstrings, update BiCornerPool
      
      * import ops from mmcv
      b05c17e3
  18. Jul 20, 2020
  19. Jul 15, 2020
  20. Jul 14, 2020
  21. Jul 12, 2020
  22. Jul 10, 2020
    • Cao Yuhang's avatar
      clean op (#3232) · 5f2cdedd
      Cao Yuhang authored
      
      * clean op
      
      * clean
      
      * update build.yml
      
      * fix setup
      
      * change ci mmcv version
      
      * change ci mmcv version
      
      * add install pre-build mmcv instructions
      
      * update mmcv url, move some unnit tests to mmcv
      
      * update ci mmcv
      
      * test
      
      * test
      
      * test
      
      * fix unit test
      
      * fix unit test
      
      * fix onnx script
      
      * update mmcv url
      
      * fix typo
      
      * fix some doc
      
      * Bump version
      
      * resolve comments
      
      * Fix version bug
      
      Co-authored-by: default avatarZwwWayne <wayne.zw@outlook.com>
      5f2cdedd
  23. Jul 09, 2020
  24. Jul 08, 2020
  25. Jul 04, 2020
  26. Jul 02, 2020
  27. Jun 30, 2020
    • Siyuan Qiao's avatar
      Add support for DetectoRS. (#3064) · 4e40f6f0
      Siyuan Qiao authored
      
      * Add support for DetectoRS.
      
      * Fix Travis CI build failure and remove loading rfp_pretrained for test
      
      * Revise the code according to the PR reviews:
      
      * remove unnecessary `,`
      
      * add docstring to ASPP and ConvAWS2d
      
      * make args of ASPP configurable
      
      * simplify the code of ConvAWS2d
      
      * import nn and functional for SAConv2d
      
      * rewrite rfp_conv with build_conv_layer and constant_init
      
      * rename rfp_inp with rfp_inplanes
      
      * reformat code to pass Travis CI build
      
      * Revise codes according to the PR reviews:
      
      * Create new backbone DetectoRS_ResNe(X)t to incorporate RFP and SAC.
      
      * Initialize modules with mmcv.cnn.
      
      * Revise the codes of RFP.
      
      * Revise codes according to the PR comments:
      
      * Add docstrings to Bottleneck in mmdet/models/backbones/detectors_resnet.py.
      
      * Add docstrings to _load_from_state_dict in mmdet/ops/conv_ws.py.
      
      * Initialize the switch of SAC with mmcv.
      
      * minior refactor and docstring
      
      * update doc
      
      * update README
      
      * move init into init_weights()
      
      * update model zoo
      
      * add gfl
      
      Co-authored-by: default avatarJiarui XU <xvjiarui0826@gmail.com>
      4e40f6f0
  28. Jun 27, 2020
  29. Jun 26, 2020
Loading