1. 27 11月, 2018 2 次提交
    • keineahnung2345's avatar
      Dockerfile with jupyter notebook support (#202) · bcb32120
      keineahnung2345 提交于
      * Dockerfile with jupyter notebook support
      
      * add instruction of building docker with jupyter
      
      * upload dockerfile with jupyter support
      
      * remove Dockerfile-jupyter
      
      * remove jupyter_notebook_config.py
      
      * update INSTALL.md
      
      * Dockerfile with jupyter notebook support
      
      * add instruction of building docker with jupyter
      
      * upload dockerfile with jupyter support
      
      * remove Dockerfile-jupyter
      
      * remove jupyter_notebook_config.py
      
      * update INSTALL.md
      
      * apply changes in 1123
      
      * update INSTALL.md
      
      * update install.md
      
      add description of the password
      add -v flag
      
      * clean up
      
      * remove tensorflow copyright
      bcb32120
    • H
      remove unused code (#217) · bc625c11
      Hao 提交于
      bc625c11
  2. 26 11月, 2018 1 次提交
  3. 23 11月, 2018 5 次提交
  4. 21 11月, 2018 2 次提交
  5. 20 11月, 2018 2 次提交
  6. 19 11月, 2018 1 次提交
  7. 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
  8. 16 11月, 2018 1 次提交
    • M
      Docker hotfix (#162) · 2fbb8dd8
      Miguel Varela Ramos 提交于
      * added Dockerfile
      
      * intructions for installation with docker
      
      * INSTALL.md: added note to inform nvidia-docker only works with Linux
      
      * dockerfile nccl2 hotfix
      
      * INSTALL.md update
      
      * removes explicit install of NCCL2 as it is included in the CUDA image
      2fbb8dd8
  9. 15 11月, 2018 1 次提交
  10. 14 11月, 2018 2 次提交
  11. 13 11月, 2018 1 次提交
    • M
      adds Dockerfile (#78) · 1276d20b
      Miguel Varela Ramos 提交于
      * added Dockerfile
      
      * intructions for installation with docker
      
      * adds nccl to dockerfile
      
      * Update Dockerfile
      
      * Update INSTALL.md
      1276d20b
  12. 05 11月, 2018 2 次提交
    • H
      Return results and predictions after inference (#105) · e7edc294
      Hadrien Mary 提交于
      e7edc294
    • G
      Fix repeatedly invoke build_detection_model error. (#107) · 0527726b
      Guoxia Wang 提交于
      ## Bug
      When I repeatedly invoke build_detection_model function to build the model, I will get the error: `AttributeError: 'ResNet' object has no attribute 'layer1'`. 
      
      ## To Reproduce
      ```
      model = build_detection_model(cfg)
      model = build_detection_model(cfg)
      ```
      
      ## The reason
      The variable `ResNet50StagesTo4` is a global generator expression, so when we build the model secondly, the code executes to Line 82 `for stage_spec in stage_specs:` and `stage_specs` will return empty leading to do not add any stage. Finally, `self._freeze_backbone` try to freeze the backbone by executing `m = getattr(self, "layer" + str(stage_index))` firstly. At the moment, it will throw the AttributeError `AttributeError: 'ResNet' object has no attribute 'layer1'`.
      
      I guess you want to define ResNet50StagesTo4 as the tuple, so I try to fix by add tuple type qualifier.
      
      ## The solution
      Add the tuple type to `ResNet50StagesTo5`, `ResNet50StagesTo4`, `ResNet50FPNStagesTo5`, `ResNet101FPNStagesTo5`.
      
      I do not know whether there are similar bug existing, so you need to review my solution. Thank you!
      0527726b
  13. 02 11月, 2018 2 次提交
  14. 01 11月, 2018 3 次提交
  15. 31 10月, 2018 1 次提交
  16. 30 10月, 2018 1 次提交
  17. 27 10月, 2018 3 次提交
  18. 26 10月, 2018 8 次提交
  19. 25 10月, 2018 1 次提交