Skip to content
Snippets Groups Projects
  1. Oct 28, 2020
  2. Oct 13, 2020
  3. Oct 12, 2020
    • Ryan Li's avatar
      Added `generate_inputs_and_wrap_model` function for pytorch2onnx (#3857) · 0a7628d8
      Ryan Li authored
      * added `generate_inputs_and_wrap_model` function for pytorch2onnx
      
      * undo debugging changes
      
      * added model.cpu().eval()
      
      * refactored onnx
      
      * fix verify
      
      * move `generate_inputs_and_wrap_model` into mmdet.core.export
      
      * use `generate_inputs_and_wrap_model` in tools/pytorch2onnx.py
      0a7628d8
  4. Sep 30, 2020
  5. 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
      bf01bdd5
  6. Sep 22, 2020
  7. Sep 21, 2020
    • Ryan Li's avatar
      Change all fp16 operation to using MMCV (#3766) · 14b5d8eb
      Ryan Li authored
      * Change all fp16 operation to using MMCV
      
      * fix isort
      
      * yapf and docformatter
      
      * Revert "yapf and docformatter"
      
      This reverts commit dede22f5339e04002ccad4e7c4c7bbb083b2e6dc.
      
      * yapf
      14b5d8eb
  8. Sep 16, 2020
  9. Sep 10, 2020
  10. 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
      e5072a3f
  11. 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
  12. Aug 28, 2020
  13. Aug 23, 2020
  14. Aug 22, 2020
  15. Aug 20, 2020
  16. Aug 11, 2020
  17. Aug 05, 2020
    • Jerry Jiarui XU's avatar
      fixed default mean/std for onnx (#3491) · ce9e7049
      Jerry Jiarui XU authored
      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>
      2f32a47a
  18. 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
  19. 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
  20. Jul 08, 2020
  21. Jul 04, 2020
  22. 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
  23. Jun 27, 2020
  24. Jun 26, 2020
  25. Jun 20, 2020
  26. May 27, 2020
  27. 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
      dab4ac1b
  28. 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
      9be3eb0d
  29. May 20, 2020
  30. May 12, 2020
  31. 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
      2d844a84
  32. May 06, 2020
  33. May 05, 2020
    • Iago González's avatar
      Add score threshold (#2601) · 2d035d04
      Iago González authored
      * Add score_thr parameter to test
      
      * Add info about score_thr in docs
      
      * Rename score_thr to show_score_thr
      
      * Fix show-score-thr name in getting_started.md
      2d035d04
  34. Apr 30, 2020
  35. Apr 29, 2020
    • David de la Iglesia Castro's avatar
      Add option to save the result images of running tools/test (#2414) · e8117f0f
      David de la Iglesia Castro authored
      
      * Use apis/inference in detectors show_result
      
      * Add images_out_dir arg to test apis
      
      * Include --images_out_dir in assertion
      
      * Fix single class parsing
      
      * Remove single class hack
      
      * Move import
      
      * Add example of saving results
      
      * Fix list number
      
      * Refactor show_result
      
      * Update docs
      
      * Update __init__
      
      * Fix CLASSES reference
      
      * Remove unnecessar assert for custom classes
      
      * Use - instead of _
      
      * Use - instead of _
      
      * Rename images_out_dir -> out_dir
      
      * Remove unnecessary model.module
      
      * Update show_result with all params and docstring
      
      * Fix missing comma
      
      * Set rescale always to True
      
      * Remove outdated restriction from docs
      
      * Drop pathlib
      
      * Rename out_dir -> show_dir
      
      * Update docstring
      
      * More explicit code. Fix out_dir
      
      * Update docstrings
      
      * Flake8
      
      Co-authored-by: default avatarmmeendez8 <miguelmndez@gmail.com>
      Co-authored-by: default avatarsbugallo <sbugallo@gradiant.org>
      e8117f0f
  36. Apr 28, 2020
Loading