From 86dbd91f6de82d1623c61aaac383dc1cae209633 Mon Sep 17 00:00:00 2001 From: wat3rBro Date: Tue, 13 Nov 2018 14:56:27 -0800 Subject: [PATCH] fix maskrnn typo (#154) --- ABSTRACTIONS.md | 2 +- INSTALL.md | 2 +- README.md | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ABSTRACTIONS.md b/ABSTRACTIONS.md index 7428de677..cdb3c4287 100644 --- a/ABSTRACTIONS.md +++ b/ABSTRACTIONS.md @@ -16,7 +16,7 @@ We provide a convenience function `to_image_list` that accepts a few different input types, including a list of tensors, and returns an `ImageList` object. ```python -from maskrnn_benchmark.structures.image_list import to_image_list +from maskrcnn_benchmark.structures.image_list import to_image_list images = [torch.rand(3, 100, 200), torch.rand(3, 150, 170)] batched_images = to_image_list(images) diff --git a/INSTALL.md b/INSTALL.md index 02d304f50..aabd6897f 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -23,7 +23,7 @@ source activate maskrcnn_benchmark # this installs the right pip and dependencies for the fresh python conda install ipython -# maskrnn_benchmark and coco api dependencies +# maskrcnn_benchmark and coco api dependencies pip install ninja yacs cython matplotlib # follow PyTorch installation in https://pytorch.org/get-started/locally/ diff --git a/README.md b/README.md index 10213646e..1fb73f81f 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ In order to be able to run it on fewer GPUs, there are a few possibilities: **1. Run the following without modifications** ```bash -python /path_to_maskrnn_benchmark/tools/train_net.py --config-file "/path/to/config/file.yaml" +python /path_to_maskrcnn_benchmark/tools/train_net.py --config-file "/path/to/config/file.yaml" ``` This should work out of the box and is very similar to what we should do for multi-GPU training. But the drawback is that it will use much more GPU memory. The reason is that we set in the diff --git a/setup.py b/setup.py index 3503372cf..bfb6845e5 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ def get_extensions(): name="maskrcnn_benchmark", version="0.1", author="fmassa", - url="https://github.com/facebookresearch/maskrnn-benchmark", + url="https://github.com/facebookresearch/maskrcnn-benchmark", description="object detection in pytorch", packages=find_packages(exclude=("configs", "tests",)), # install_requires=requirements,