1. 22 4月, 2019 3 次提交
  2. 20 4月, 2019 3 次提交
  3. 17 4月, 2019 1 次提交
  4. 16 4月, 2019 4 次提交
  5. 12 4月, 2019 7 次提交
    • C
      Update README.md · 05c8d523
      chhshen 提交于
      05c8d523
    • H
      Merge pull request #2 from cclauss/patch-1 · 2caebe73
      Hao Chen 提交于
      Fix typo: tpye() --> type()
      2caebe73
    • C
      Fix typo: tpye() --> type() · a4653309
      cclauss 提交于
      [flake8](http://flake8.pycqa.org) testing of https://github.com/tianzhi0549/FCOS on Python 3.7.1
      
      $ __flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics__
      ```
      ./maskrcnn_benchmark/structures/segmentation_mask.py:70:74: F821 undefined name 'tpye'
                      "Type of `masks` argument could not be interpreted:%s" % tpye(masks)
                                                                               ^
      ./docker/docker-jupyter/jupyter_notebook_config.py:5:5: F821 undefined name 'get_config'
      c = get_config()
          ^
      2     F821 undefined name 'get_config'
      2
      ```
      __E901,E999,F821,F822,F823__ are the "_showstopper_" [flake8](http://flake8.pycqa.org) issues that can halt the runtime with a SyntaxError, NameError, etc. These 5 are different from most other flake8 issues which are merely "style violations" -- useful for readability but they do not effect runtime safety.
      * F821: undefined name `name`
      * F822: undefined name `name` in `__all__`
      * F823: local variable name referenced before assignment
      * E901: SyntaxError or IndentationError
      * E999: SyntaxError -- failed to compile a file into an Abstract Syntax Tree
      a4653309
    • Z
      box_only = False when using FCOS · 7e22147a
      Zhi Tian 提交于
      7e22147a
    • Z
      fixed a bug · 41841fa7
      Zhi Tian 提交于
      41841fa7
    • Z
      STRIDE_IN_1X1 = True for ResNeXt · 0a6f957d
      Zhi Tian 提交于
      0a6f957d
    • Z
      add FCOS · 55d2d6c8
      Zhi Tian 提交于
      55d2d6c8
  6. 09 4月, 2019 1 次提交
    • C
      Support Binary Mask with transparent SementationMask interface (#473) · b4d54657
      Csaba Botos 提交于
      * support RLE and binary mask
      
      * do not convert to numpy
      
      * be consistent with Detectron
      
      * delete wrong comment
      
      * [WIP] add tests for segmentation_mask
      
      * update tests
      
      * minor change
      
      * Refactored segmentation_mask.py
      
      * Add unit test for segmentation_mask.py
      
      * Add RLE support for BinaryMaskList
      
      * PEP8 black formatting
      
      * Minor patch
      
      * Use internal  that handles 0 channels
      
      * Fix polygon slicing
      b4d54657
  7. 05 4月, 2019 1 次提交
  8. 04 4月, 2019 1 次提交
    • Z
      Fix a bug in Docker file (#637) · 5c44ca74
      Zhang Liliang 提交于
      Fix a bug.
      Romove the echo command in line 36: RUN conda install pytorch-nightly cudatoolkit=${CUDA} -c pytorch 
      To enable conda installation of pytorch-nightly.
      5c44ca74
  9. 02 4月, 2019 1 次提交
  10. 31 3月, 2019 1 次提交
  11. 27 3月, 2019 1 次提交
  12. 26 3月, 2019 3 次提交
    • M
      Fixes conda CUDA version in Dockerfile (#604) · bd39d2c1
      Miguel Varela Ramos 提交于
      * fixes to dockerfile
      
      * replaces local installation by git clone
      bd39d2c1
    • M
      Rollback dispatch patch (#603) · 4a7dcc4d
      Miguel Varela Ramos 提交于
      * Merge branch 'master' of /home/braincreator/projects/maskrcnn-benchmark with conflicts.
      
      * rolls back the breaking AT dispatch changes (#555)
      
      * revert accidental docker changes
      
      * revert accidental docker changes (2)
      4a7dcc4d
    • K
      Support for running on arbitrary CUDA device. (#537) · f0318794
      kaiJIN 提交于
      * support for any one cuda device
      
      * Revert "support for any one cuda device"
      
      This reverts commit 0197e4e2ef18ec41cc155f3ae2a0face5b77e1e9.
      
      * support runnning for anyone cuda device
      
      * using safe CUDAGuard rather than intrinsic CUDASetDevice
      
      * supplement a header dependency (test passed)
      
      * Support for  arbitrary GPU device.
      
      * Support for arbitrary GPU device.
      
      * add docs for two method to control devices
      f0318794
  13. 25 3月, 2019 1 次提交
  14. 13 3月, 2019 1 次提交
  15. 12 3月, 2019 2 次提交
  16. 11 3月, 2019 1 次提交
  17. 10 3月, 2019 1 次提交
  18. 08 3月, 2019 2 次提交
  19. 05 3月, 2019 2 次提交
  20. 01 3月, 2019 1 次提交
  21. 28 2月, 2019 2 次提交