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
3d37c350
Unverified
Commit
3d37c350
authored
Oct 26, 2018
by
Francisco Massa
Committed by
GitHub
Oct 26, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add TROUBLESHOOTING section (#36)
parent
54aa9458
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
0 deletions
+34
-0
README.md
README.md
+5
-0
TROUBLESHOOTING.md
TROUBLESHOOTING.md
+29
-0
No files found.
README.md
View file @
3d37c350
...
@@ -190,6 +190,11 @@ While the aforementioned example should work for training, we leverage the
...
@@ -190,6 +190,11 @@ While the aforementioned example should work for training, we leverage the
cocoApi for computing the accuracies during testing. Thus, test datasets
cocoApi for computing the accuracies during testing. Thus, test datasets
should currently follow the cocoApi for now.
should currently follow the cocoApi for now.
## Troubleshooting
If you have issues running or compiling this code, we have compiled a list of common issues in
[
TROUBLESHOOTING.md
](
TROUBLESHOOTING.md
)
. If your issue is not present there, please feel
free to open a new issue.
## License
## License
maskrcnn-benchmark is released under the MIT license. See
[
LICENSE
](
LICENSE
)
for additional details.
maskrcnn-benchmark is released under the MIT license. See
[
LICENSE
](
LICENSE
)
for additional details.
TROUBLESHOOTING.md
0 → 100644
View file @
3d37c350
# Troubleshooting
Here is a compilation if common issues that you might face
while compiling / running this code:
## Compilation errors when compiling the library
If you encounter build errors like the following:
```
/usr/include/c++/6/type_traits:1558:8: note: provided for ‘template<class _From, class _To> struct std::is_convertible’
struct is_convertible
^~~~~~~~~~~~~~
/usr/include/c++/6/tuple:502:1: error: body of constexpr function ‘static constexpr bool std::_TC<<anonymous>, _Elements>::_NonNestedTuple() [with _SrcTuple = std::tuple<at::Tensor, at::Tensor, at::Tensor, at::Tensor>&&; bool <anonymous> = true; _Elements = {at::Tensor, at::Tensor, at::Tensor, at::Tensor}]’ not a return-statement
}
^
error: command '/usr/local/cuda/bin/nvcc' failed with exit status 1
```
check your CUDA version and your
`gcc`
version.
```
nvcc --version
gcc --version
```
If you are using CUDA 9.0 and gcc 6.4.0, then refer to https://github.com/facebookresearch/maskrcnn-benchmark/issues/25,
which has a summary of the solution. Basically, CUDA 9.0 is not compatible with gcc 6.4.0.
## ImportError: No module named maskrcnn_benchmark.config when running webcam.py
This means that
`maskrcnn-benchmark`
has not been properly installed.
Refer to https://github.com/facebookresearch/maskrcnn-benchmark/issues/22 for a few possible issues.
Note that we now support Python 2 as well.
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