- 23 Nov, 2018 5 commits
-
-
Francisco Massa authored
* add support for pascal voc dataset and evaluate * optimization for adding voc dataset * make inference.py dataset-agnostic; add use_difficult option to voc dataset * handle voc difficult objects correctly * Remove dependency on lxml plus minor improvements * More cleanups * More comments and improvements * Lint fix * Move configs to their own folder
-
Miguel Varela Ramos authored
-
archdyn authored
-
Miguel Varela Ramos authored
-
keineahnung2345 authored
* add opencv support to Dockerfile cv2 is used by predictor.py, so it's required * install opencv-python from conda
-
- 21 Nov, 2018 2 commits
-
-
keineahnung2345 authored
-
Francisco Massa authored
-
- 20 Nov, 2018 2 commits
-
-
Francisco Massa authored
-
Francisco Massa authored
* Add an option to postprocess masks during inference * Fix COCO evaluation to resize masks ony if needed. * Fix casting * Fix minor issues in paste_mask_in_image * Cast mask to uint8 * Make Masker batch compatible * Remove warnings and stylistic changes
-
- 19 Nov, 2018 1 commit
-
-
Francisco Massa authored
-
- 17 Nov, 2018 1 commit
-
-
keineahnung2345 authored
* 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
-
- 16 Nov, 2018 1 commit
-
-
Miguel Varela Ramos authored
* 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
-
- 15 Nov, 2018 1 commit
-
-
Jimmy Wu authored
-
- 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 4 commits
-
-
Kongsea authored
-
Francisco Massa authored
-
vfdev authored
Fix a small typo
-
Soumith Chintala authored
Add ISSUE_TEMPLATE for Github
-