1. 23 1月, 2019 1 次提交
  2. 22 1月, 2019 1 次提交
  3. 21 1月, 2019 4 次提交
    • F
      Revert "swich to new pytorch api (#359)" (#364) · 205fa4e7
      Francisco Massa 提交于
      This reverts commit 6cbb3d27.
      205fa4e7
    • 图波列夫's avatar
      swich to new pytorch api (#359) · 6cbb3d27
      图波列夫 提交于
      6cbb3d27
    • Z
      add GroupNorm (#346) · 3b27142e
      zimenglan 提交于
      * make pixel indexes 0-based for bounding box in pascal voc dataset
      
      * replacing all instances of torch.distributed.deprecated with torch.distributed
      
      * replacing all instances of torch.distributed.deprecated with torch.distributed
      
      * add GroupNorm
      
      * add GroupNorm -- sort out yaml files
      
      * use torch.nn.GroupNorm instead, replace 'use_gn' with 'conv_block' and use 'BaseStem'&'Bottleneck' to simply codes
      
      * modification on 'group_norm' and 'conv_with_kaiming_uniform' function
      
      * modification on yaml files in configs/gn_baselines/ and reduce the amount of indentation and code duplication
      3b27142e
    • 图波列夫's avatar
      Uniform annotation format (#357) · abf36b94
      图波列夫 提交于
      abf36b94
  4. 14 1月, 2019 2 次提交
  5. 30 12月, 2018 1 次提交
  6. 22 12月, 2018 1 次提交
  7. 21 12月, 2018 2 次提交
    • L
      Update checkpoint.py (#299) · 9b6aa824
      Lei Yang 提交于
      * Update checkpoint.py
      
      if edit "{save_dir}/last_checkpoint" by vim, "\n" will auto append to the end of file. which will raise 
      
      ```
      FileNotFoundError: [Errno 2] No such file or directory: 'save_dir/model_0060000.pth\n'
      ```
      
      * Update checkpoint.py
      
      if edit "{save_dir}/last_checkpoint" by vim, "\n" will auto append to the end of file. which will raise
      ```
      FileNotFoundError: [Errno 2] No such file or directory: 'save_dir/model_0060000.pth\n'
      ```
      9b6aa824
    • B
      Added distributed training check (#287) · f66c1d40
      benjaminrwilson 提交于
      f66c1d40
  8. 18 12月, 2018 1 次提交
  9. 17 12月, 2018 1 次提交
  10. 14 12月, 2018 2 次提交
  11. 06 12月, 2018 2 次提交
  12. 05 12月, 2018 2 次提交
  13. 04 12月, 2018 3 次提交
  14. 28 11月, 2018 1 次提交
  15. 27 11月, 2018 4 次提交
  16. 26 11月, 2018 1 次提交
  17. 23 11月, 2018 5 次提交
  18. 21 11月, 2018 2 次提交
  19. 20 11月, 2018 2 次提交
  20. 19 11月, 2018 1 次提交
  21. 17 11月, 2018 1 次提交
    • keineahnung2345's avatar
      fix some minor issues in dockerfile (#165) · 7402db8b
      keineahnung2345 提交于
      * fix some minor issues in dockerfile
      
      
      RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
      fixes
      debconf: unable to initialize frontend: Dialog
      debconf: (TERM is not set, so the dialog frontend is not usable.)
      debconf: falling back to frontend: Readline
      debconf: unable to initialize frontend: Readline
      debconf: (This frontend requires a controlling tty.)
      debconf: falling back to frontend: Teletype
      dpkg-preconfigure: unable to re-open stdin: 
      
      RUN apt-get update -y && apt-get install -y apt-utils
      fixes
      debconf: delaying package configuration, since apt-utils is not installed
      
      * remove redundant command
      
      * add -y to conda install and pip install
      
      * remove -y from pip install
      7402db8b