Skip to content
Snippets Groups Projects
  1. Dec 15, 2020
  2. Nov 26, 2020
    • Jerry Jiarui XU's avatar
      [Feature] Best ckpt hook (#3773) · 105c352f
      Jerry Jiarui XU authored
      * [Feature] Add best ckp hook
      
      * update docstring
      
      * Fixed evaluate
      
      * make key_indicator default None
      
      * add test, and OrderDict
      
      * add test fot best checkpoint hook
      
      * delete comments
      
      * add more info
      
      * fixed eval metric
      
      * remove key_indicator
      
      * update doc
      
      * fixed test.py/eval_metric.py
      
      * fixed dist
      
      * compatible with mmcv
      
      * more test
      
      * revert voc0712
      Unverified
      105c352f
  3. Nov 24, 2020
  4. Nov 23, 2020
  5. Oct 30, 2020
  6. Oct 29, 2020
  7. Oct 28, 2020
  8. Oct 13, 2020
  9. Oct 12, 2020
  10. Sep 30, 2020
  11. Sep 24, 2020
    • Ryan Li's avatar
      Fix bc break of fp16 (#3822) · bf01bdd5
      Ryan Li authored
      * fix bc break of mmdet.core.fp16, refactor import of wrap_fp16_model
      
      * changed warning method
      
      * added docstring for Depr_Fp16OptimizerHook
      
      * docformatter
      
      * fix docstring
      
      * changed names from depr to deprecated
      Unverified
      bf01bdd5
  12. Sep 22, 2020
  13. Sep 21, 2020
  14. Sep 16, 2020
  15. Sep 10, 2020
  16. Sep 03, 2020
    • Cao Yuhang's avatar
      New batch inference (#3564) · e5072a3f
      Cao Yuhang authored
      * update some models
      
      * some fix
      
      * support cascade
      
      * add htc
      
      * sup more models
      
      * sup point rend
      
      * clean comment
      
      * minor fix
      
      * clean
      
      * fix unittest
      
      * update doc
      
      * fix image demo and robustness test
      
      * fix webcame
      Unverified
      e5072a3f
  17. Aug 30, 2020
  18. Aug 28, 2020
  19. Aug 23, 2020
  20. Aug 22, 2020
  21. Aug 20, 2020
  22. Aug 11, 2020
  23. Aug 05, 2020
    • Jerry Jiarui XU's avatar
      fixed default mean/std for onnx (#3491) · ce9e7049
      Jerry Jiarui XU authored
      Unverified
      ce9e7049
    • 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>
      Unverified
      2f32a47a
  24. 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
      Unverified
      9d3f9b03
  25. 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>
      Unverified
      5f2cdedd
  26. Jul 08, 2020
  27. Jul 04, 2020
  28. 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>
      Unverified
      4e40f6f0
  29. Jun 27, 2020
  30. Jun 26, 2020
  31. Jun 20, 2020
  32. May 27, 2020
  33. May 23, 2020
    • Wenwei Zhang's avatar
      Support RegNetX models (#2710) · dab4ac1b
      Wenwei Zhang authored
      * Add RegNet, docs/refactor TBD
      
      * Support RegNet
      
      * Add RegNets
      
      * Modify docs and refactor code
      
      * fix pre-train bug
      
      * Performance ready
      
      * Use public model weights
      
      * Performance & settings done
      
      * Fix unittest bug
      
      * Try another way of test config
      
      * Add unittest and refactor
      
      * Reformat
      
      * Finish refactor regnet
      
      * merge tests
      
      * fix conflicts
      
      * Fix resnext CI bug
      
      * rename parameter
      
      * Add ref link & clean _delete_
      
      * tweaks of doc
      
      * try resnext doctest
      
      * add expansion in block
      
      * remove doctest of resnext
      Unverified
      dab4ac1b
  34. May 21, 2020
    • Cao Yuhang's avatar
      Update inf speed (#2730) · 9be3eb0d
      Cao Yuhang authored
      * update inf speed
      
      * update some models
      
      * update benchmark config and model
      
      * add no aug config
      
      * merge log model table with performance table
      
      * add detectron2 url
      Unverified
      9be3eb0d
  35. May 20, 2020
  36. May 12, 2020
  37. May 08, 2020
    • Wenwei Zhang's avatar
      Fix validate default (#2651) · 2d844a84
      Wenwei Zhang authored
      * add python path in scripts
      
      * Make python path work
      
      * Shorter path
      
      * Add docs
      
      * Change dist scripts
      
      * Change slurm example
      
      * Fix validate default bug
      
      * Change docs accordingly
      Unverified
      2d844a84
Loading