- 14 Nov, 2018 2 commits
- 13 Nov, 2018 1 commit
-
-
Miguel Varela Ramos authored
* added Dockerfile * intructions for installation with docker * adds nccl to dockerfile * Update Dockerfile * Update INSTALL.md
-
- 05 Nov, 2018 2 commits
-
-
Hadrien Mary authored
-
Guoxia Wang authored
## 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!
-
- 02 Nov, 2018 2 commits
-
-
Yan Li authored
* quick fix for area * Update bounding_box.py
-
Jiayuan Gu authored
use cuda version torch.randperm to avoid copy from gpu to cpu and a fatal bug in multi-thread cpu version
-
- 01 Nov, 2018 3 commits
-
-
Yan Li authored
-
Mitchell Below authored
Replace BoxList argument size with image_size.
-
Mitchell Below authored
Replace baseline with benchmark
-
- 31 Oct, 2018 1 commit
-
-
Stefan Otte authored
-
- 30 Oct, 2018 1 commit
-
-
Francisco Massa authored
-
- 27 Oct, 2018 3 commits
-
-
Soumith Chintala authored
Fix BoxList constructor call in README.md
-
Nikolay Shebanov authored
-
Maxim Berman authored
-
- 26 Oct, 2018 8 commits
-
-
Francisco Massa authored
-
Francisco Massa authored
-
Francisco Massa authored
-
Francisco Massa authored
* Add missing __init__.py files * Add packages * Rename logging.py to logger.py Import rules from Python2 makes this a bad idea * Make import_file py2 compatible * list does not have .copy() in py2 * math.log2 does not exist in py2 * Miscellaneous fixes for py2 * Address comments
-
Lê Khắc Hồng Phúc authored
-
Jean-Marie Prigent authored
-
Soumith Chintala authored
Access repos via https in INSTALL.md
-
Nikolay Shebanov authored
It is simpler and requires less effort (i.e. no auth) compared to SSH
-
- 25 Oct, 2018 9 commits
-
-
Kongsea authored
-
Francisco Massa authored
-
vfdev authored
Fix a small typo
-
Soumith Chintala authored
Add ISSUE_TEMPLATE for Github
-
Soumith Chintala authored
Update INSTALL.md
-
Jiayuan Gu authored
* Update .gitignore * Update .gitignore
-
Martin Rünz authored
-
Francisco Massa authored
-
Francisco Massa authored
-