"benchmark/vscode:/vscode.git/clone" did not exist on "3ac7df2b6dc93d33712619fcc739891d4b4b01da"
  1. 13 Jul, 2019 2 commits
    • simon wu's avatar
      Fixing build-errors on Windows (#969) · 59fbb5c1
      simon wu authored
      * Fixing build-errors on Windows (add some compile args, which are default on Linux)
      
      * Fixing build-errors on Windows
      
      * minor formatting
      
      * Fixing errors on windows
      
      1.Adding 'cxx' key for extra_compile_args
      2.Adding type-cast to long for first parameter of THCCeilDiv facebookresearch/maskrcnn-benchmark#409
      3.Ignoring resource setting on windows
      
      * update the order of import statements
      59fbb5c1
    • Cao Yuhang's avatar
      support fp16 for maskiou_head (#986) · cb0dd8ee
      Cao Yuhang authored
      cb0dd8ee
  2. 11 Jul, 2019 1 commit
    • Daniel Suess's avatar
      Refactor compilation into single setup.py (#881) · 713e98bc
      Daniel Suess authored
      * Implement all extension building in main setup.py
      
      * Remove old build files
      
      * Adapt installation guide
      
      * Refactor to comply with flake8
      
      * Move imports into functions & refactor module paths
      
      * Format setup.py with yapf
      
      * Move cython/numpy import back to head of file
      
      * Add note to use verbose mode for pip in INSTALL.md
      713e98bc
  3. 08 Jul, 2019 1 commit
  4. 04 Jul, 2019 1 commit
  5. 02 Jul, 2019 1 commit
  6. 01 Jul, 2019 3 commits
  7. 28 Jun, 2019 3 commits
    • Cao Yuhang's avatar
      update benchmark (#891) · c6544a72
      Cao Yuhang authored
      c6544a72
    • Cao Yuhang's avatar
      Support FP16 training (#520) · e7466395
      Cao Yuhang authored
      * add fp16 support
      
      * fpn donot need bn normalize
      
      * refactor wrapped bn
      
      * fix bug of retinanet
      
      * add fp16 ssd300 voc, cascade r50, cascade mask r50
      
      * fix bug in cascade rcnn testing
      
      * add support to fix bn training
      
      * add fix bn cfg
      
      * delete fixbn cfg, mv fixbn fp16 to a new branch
      
      * fix cascade mask fp16 bug in test
      
      * fix bug in cascade mask rcnn fp16 test
      
      * add more fp16 cfgs
      
      * add fp16 fast-r50 and faster-dconv-r50
      
      * add fp16 test, minor fix
      
      * clean code
      
      * fix config work_dir name
      
      * add patch func, refactor code
      
      * fix format
      
      * clean code
      
      * move convert rois to single_level_extractor
      
      * fix bug for cascade mask, the seg mask is ndarray
      
      * refactor code, add two decorator force_fp32 and auto_fp16
      
      * add fp16_enable attribute
      
      * add more comment, fix format and test assertion
      
      * fix pep8 format error
      
      * format commont and api
      
      * rename distribute to distributed, fix dict copy
      
      * rename function name
      
      * move function, add comment
      
      * remove unused parameter
      
      * mv decorators into decorators.py, hook related functions to hook
      
      * add auto_fp16 to forward of semantic head
      
      * add auto_fp16 to all heads and fpn
      
      * add docstrings and minor bug fix
      
      * simple refactoring
      
      * bug fix for patching forward method
      
      * roi extractor in fp32 mode
      
      * fix flake8 error
      
      * fix ci error
      
      * add fp16 support to ga head
      
      * remove parallel test assert
      
      * minor fix
      
      * add comment in build_optimizer
      
      * fix typo in comment
      
      * fix typo enable --> enabling
      
      * udpate README
      e7466395
    • Kai Chen's avatar
      fix typo (#886) · bffa0510
      Kai Chen authored
      bffa0510
  8. 27 Jun, 2019 1 commit
    • Qiang Zhang's avatar
      Only import torch.distributed when needed (#882) · 8bf38df0
      Qiang Zhang authored
      * Fix an import error for `get_world_size` and `get_rank`
      
      * Only import torch.distributed when needed
      
      torch.distributed is only used in DistributedGroupSampler
      
      * use `get_dist_info` to obtain world size and rank
      
      `get_dist_info` from `mmcv.runner.utils` handles the problem of `distributed_c10d` doesn't exist.
      8bf38df0
  9. 25 Jun, 2019 4 commits
  10. 24 Jun, 2019 2 commits
    • luxiin's avatar
      Code for "Grid R-CNN" (#810) · b5418c2f
      luxiin authored
      * Grid R-CNN
      
      * add grid_rcnn_res50fpn2x config
      
      * add assertion that grid_head should exist
      
      * fix bugs and remove SharedFCBBoxHeadGrid
      
      * remove the property with_grid
      
      * format fixes for grad_head and add config dir
      
      * move random_jitter to grid_head and some refactoring
      
      * simplify the calculation of num_edges
      
      * refactoring
      
      * refactoring
      
      * rename config files and add x101 config
      
      * bug fix for inference
      
      * remove random_jitter_single
      
      * add readme of grid rcnn
      
      * add bibtex of grid rcnn plus
      
      * update work_dir
      b5418c2f
    • Cao Yuhang's avatar
      Reimplement "Mask Scoring R-CNN" (#621) · 466926eb
      Cao Yuhang authored
      * add ms-rcnn
      
      * fix config
      
      * fix bug in test
      
      * fix bug in test, det_labels should plus 1
      
      * add area ratio
      
      * speed up area ratio calculation
      
      * delete caffe style config
      
      * refactor code, bbox and segm eval using different score
      
      * fix bug in distevalhook
      
      * update README and config
      
      * update x101-64x4d
      
      * refactor code
      
      * update upstream
      
      * format
      
      * update r50 and r101 2x performance
      
      * update ms-rcnn-x101-64x4d-2x performance
      
      * move simple_mask_test, add docstring and comment
      
      * delete TODO in mask iou target
      
      * add detail comment to mask iou target
      
      * modify comment of mask iou target
      
      * move mask iou target to mask iou head
      
      * merge mask_iou_target and get_target
      
      * add MSELoss for MaskIoUHead and rename mask_iou to fc_mask_iou
      
      * refactoring
      
      * fix bug in test
      
      * fix bug when cropping mask inside proposal
      
      * update readme
      
      * update bibtex
      
      * remove space in bibtex
      466926eb
  11. 22 Jun, 2019 4 commits
  12. 21 Jun, 2019 2 commits
  13. 20 Jun, 2019 1 commit
    • Cao Yuhang's avatar
      Add reduction_override flag (#839) · 32df98e9
      Cao Yuhang authored
      * add reduction_override flag
      
      * change default value of reduction_override as None
      
      * add assertion, fix format
      
      * delete redudant statement in util
      
      * delete redudant comment
      32df98e9
  14. 19 Jun, 2019 2 commits
  15. 18 Jun, 2019 4 commits
  16. 17 Jun, 2019 1 commit
  17. 16 Jun, 2019 2 commits
  18. 15 Jun, 2019 1 commit
  19. 12 Jun, 2019 1 commit
    • sty-yyj's avatar
      Fix aug_test_rpn error (#737) · f18561b5
      sty-yyj authored
      * fixed a bug which causes merged_proposals are only from a certain scale of proposals in aug_test_rpn
      
      * add a comment and modify _img_metas to aug_img_metas
      f18561b5
  20. 11 Jun, 2019 3 commits