Skip to content
Snippets Groups Projects
  1. Jul 25, 2020
  2. Jul 24, 2020
  3. Jul 15, 2020
    • Wenwei Zhang's avatar
      Add colab link (#3273) · 78ac64b4
      Wenwei Zhang authored
      * Add colab link
      
      * Use mmcv-full in requirements
      
      * Migrate to MMCV 1.0.2
      
      * Resolve path issue
      
      * Use newest MMDet
      
      * Update projects
      
      * Update install process
      Unverified
      78ac64b4
  4. Jul 08, 2020
  5. Jul 07, 2020
  6. May 26, 2020
  7. May 24, 2020
    • Wang Xinjiang's avatar
      Add upsample_cfg support in FPN (#2787) · 50ffa248
      Wang Xinjiang authored
      * Add upsample_cfg support in FPN
      
      * small fix
      
      * Add multiple extra conv sources
      
      * small logical fix
      
      * Add neck tests for fpn
      
      * Add neck tests for fpn
      
      * fixed several typos
      
      * resolved issues
      
      * Removed extra_convs_source option
      
      * added necks to apis.rst
      
      * change according to comments
      
      * reconfigured configs
      Unverified
      50ffa248
  8. May 10, 2020
  9. May 06, 2020
    • Kai Chen's avatar
      Fix the docs (#2621) · 94233d41
      Kai Chen authored
      * fix the docs
      
      * add docs for image demo
      
      * add macOS in supported systems
      
      * add mmcv into requirements of readthedocs
      Unverified
      94233d41
  10. May 04, 2020
  11. 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>
      Unverified
      e8117f0f
  12. Apr 27, 2020
  13. Apr 04, 2020
    • Jerry Jiarui XU's avatar
      Support CPU mode for inference (#2385) · da09e7e5
      Jerry Jiarui XU authored
      
      * add CPU only mode which can be activated during install
      
      * fixed flake8 errors for too long lines, still have to deal with "import not at top of file"
      
      * reversing changes in MinIoURandomCrop, that not relevant to the CPU_ONLY pull request
      
      * moving the CPU_ONLY checks into deeper parts of the code
      
      * completing previous commit
      
      * using isort for imports sorting
      
      * yapf fix
      
      * followed @xvjiarui suggestions for the pull request
      
      * use mmdet.CPU_ONLY and replace the "--cpu" flag in setup.py with automatic check of cuda
      
      * make setup code cleaner
      
      * back to original implementation of MinIoURandomCrop
      
      * build all extensions with CUDA, if available
      
      * fixed DC
      
      * update doc
      
      * fixed masked_conv2d_ext
      
      * set warning once, update comment
      
      Co-authored-by: default avatarYossi Biton <yossi.biton@alibaba-inc.com>
      Co-authored-by: default avatarYossi Biton <yossibit10@gmail.com>
      Unverified
      da09e7e5
  14. Mar 23, 2020
    • Jerry Jiarui XU's avatar
      add new config sample and check scripts (#2216) · eeff0bef
      Jerry Jiarui XU authored
      * add new config sample and check scripts
      
      * context managere to prevent import
      
      * refactor backbone, add caffe
      
      * add fast rcnn
      
      * all basci config done
      
      * rm coco_proposal
      
      * add scratch, wider_face, voc
      
      * add reppoints
      
      * delete device id, auto resume
      
      * add libra_rcnn, ms_rcnn, nas_fpn
      
      * add hrnet, fcos
      
      * add free_anchor, gn, grid_rcnn, guided_anchoring, gcnet, ghm, gn+ws
      
      * finished all, but some need refactor and unified logic
      
      * fixed albu
      
      * update ReseNet101
      
      * reduce ResNet101, add norm_cfg, 4conv1fc
      
      * refactor caffe backbone
      
      * merge act_cfg, dcn from master
      
      * rename 2fc head, add 4conv1fc head
      
      * delete 4con1fc model
      
      * rename components -> _base_
      
      * flatten _base_
      
      * refactor _base_ structure
      
      * refactor config structure
      
      * reduce _base/models
      
      * rename all config
      
      * add _coco inside configs
      
      * fixed _coco in files
      
      * fixed albu in test
      
      * migrate to new sys
      
      * fixed test
      
      * fixed test
      
      * rm cascade, fast_rcnn
      
      * rm cascade, fast_rcnn from _base_
      
      * fixed fcos_center
      
      * rename from rule
      
      * collopse third party model
      
      * fixed test
      
      * fixed some minor bug
      
      * rename gn-neck_head -> gn-neck+head
      Unverified
      eeff0bef
  15. Aug 23, 2019
    • Kai Chen's avatar
      Make data pre-processing pipeline customizable (#935) · 0d5233a3
      Kai Chen authored
      * define data pipelines
      
      * update two config files
      
      * minor fix for config files
      
      * allow img_scale to be optional and update config
      
      * add some docstrings
      
      * add extra aug to transform
      
      * bug fix for mask resizing
      
      * fix cropping
      
      * add faster rcnn example
      
      * fix imports
      
      * fix robustness testing
      
      * add img_norm_cfg to img_meta
      
      * fix the inference api with the new data pipeline
      
      * fix proposal loading
      
      * delete args of DefaultFormatBundle
      
      * add more configs
      
      * update configs
      
      * bug fix
      
      * add a brief doc
      
      * update gt_labels in RandomCrop
      
      * fix key error for new apis
      
      * bug fix for masks of crowd bboxes
      
      * add argument data_root
      
      * minor fix
      
      * update new hrnet configs
      
      * update docs
      
      * rename MultiscaleFlipAug to MultiScaleFlipAug
      
      * add __repr__ for all transforms
      
      * move DATA_PIPELINE.md to docs/
      
      * fix image url
      Unverified
      0d5233a3
  16. Aug 12, 2019
  17. Aug 09, 2019
  18. Aug 02, 2019
  19. Nov 26, 2018
Loading