- 21 Dec, 2018 1 commit
-
-
benjaminrwilson authored
-
- 18 Dec, 2018 1 commit
-
-
Gu Wang authored
-
- 17 Dec, 2018 1 commit
-
-
Francisco Massa authored
-
- 14 Dec, 2018 2 commits
- 06 Dec, 2018 2 commits
-
-
Yuxin Wu authored
* Fix indexing error in nms kernel Here it is indexing a cuda tensor with CPU indices. It used to work, but after https://github.com/pytorch/pytorch/commit/006505bb8f9dcf0f38b32518308d071c8a1ccec6 it results in memory corruption. * Use the device of other tensors
-
Henry Wang authored
* add force json option * fix the same issue as #185 * bug fix * cityscapes config * update paths catalog * discard config change * organize code for more-datasets * use better representation for coco-style datasets * rename coco-style config * remove import * chmod 644 * make the config more verbose * update readme * rename * chmod
-
- 05 Dec, 2018 2 commits
-
-
CoinCheung authored
-
zimenglan authored
* 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
-
- 04 Dec, 2018 3 commits
-
-
CoinCheung authored
* readme and predictor.py * format modification and readme
-
Francisco Massa authored
-
Ren Jin authored
In maskrcnn_benchmark/modeling/roi_heads/mask_head/inference.py change line 125-126 to w = int(box[2] - box[0] + TO_REMOVE) h = int(box[3] - box[1] + TO_REMOVE)
-
- 28 Nov, 2018 1 commit
-
-
wat3rBro authored
-
- 27 Nov, 2018 4 commits
-
-
Henry Wang authored
* fix the same issue as #185 * add fix from the previous change
-
wat3rBro authored
-
keineahnung2345 authored
* 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
-
Hao authored
-
- 26 Nov, 2018 1 commit
-
-
zimenglan authored
-
- 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 2 commits
-
-
Yan Li authored
-
Mitchell Below authored
Replace BoxList argument size with image_size.
-