Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
M
maskrcnn
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
人工智能
maskrcnn
Commits
80eae227
Commit
80eae227
authored
Nov 13, 2018
by
wat3rBro
Committed by
Francisco Massa
Nov 13, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix maskrnn typo (#154)
parent
83849b4e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
ABSTRACTIONS.md
ABSTRACTIONS.md
+1
-1
INSTALL.md
INSTALL.md
+1
-1
README.md
README.md
+1
-1
setup.py
setup.py
+1
-1
No files found.
ABSTRACTIONS.md
View file @
80eae227
...
@@ -16,7 +16,7 @@ We provide a convenience function `to_image_list` that accepts a few different
...
@@ -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.
input types, including a list of tensors, and returns an
`ImageList`
object.
```
python
```
python
from
maskrnn_benchmark.structures.image_list
import
to_image_list
from
maskr
c
nn_benchmark.structures.image_list
import
to_image_list
images
=
[
torch
.
rand
(
3
,
100
,
200
),
torch
.
rand
(
3
,
150
,
170
)]
images
=
[
torch
.
rand
(
3
,
100
,
200
),
torch
.
rand
(
3
,
150
,
170
)]
batched_images
=
to_image_list
(
images
)
batched_images
=
to_image_list
(
images
)
...
...
INSTALL.md
View file @
80eae227
...
@@ -23,7 +23,7 @@ source activate maskrcnn_benchmark
...
@@ -23,7 +23,7 @@ source activate maskrcnn_benchmark
# this installs the right pip and dependencies for the fresh python
# this installs the right pip and dependencies for the fresh python
conda
install
ipython
conda
install
ipython
# maskrnn_benchmark and coco api dependencies
# maskr
c
nn_benchmark and coco api dependencies
pip
install
ninja yacs cython matplotlib
pip
install
ninja yacs cython matplotlib
# follow PyTorch installation in https://pytorch.org/get-started/locally/
# follow PyTorch installation in https://pytorch.org/get-started/locally/
...
...
README.md
View file @
80eae227
...
@@ -99,7 +99,7 @@ In order to be able to run it on fewer GPUs, there are a few possibilities:
...
@@ -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**
**1. Run the following without modifications**
```
bash
```
bash
python /path_to_maskrnn_benchmark/tools/train_net.py
--config-file
"/path/to/config/file.yaml"
python /path_to_maskr
c
nn_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.
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
But the drawback is that it will use much more GPU memory. The reason is that we set in the
...
...
setup.py
View file @
80eae227
...
@@ -60,7 +60,7 @@ setup(
...
@@ -60,7 +60,7 @@ setup(
name
=
"maskrcnn_benchmark"
,
name
=
"maskrcnn_benchmark"
,
version
=
"0.1"
,
version
=
"0.1"
,
author
=
"fmassa"
,
author
=
"fmassa"
,
url
=
"https://github.com/facebookresearch/maskrnn-benchmark"
,
url
=
"https://github.com/facebookresearch/maskr
c
nn-benchmark"
,
description
=
"object detection in pytorch"
,
description
=
"object detection in pytorch"
,
packages
=
find_packages
(
exclude
=
(
"configs"
,
"tests"
,)),
packages
=
find_packages
(
exclude
=
(
"configs"
,
"tests"
,)),
# install_requires=requirements,
# install_requires=requirements,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment