Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gitmodule to fix the access error when cloning repo #24

Open
wants to merge 2 commits into
base: openimages2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitmodules
@@ -1,3 +1,3 @@
[submodule "SNIPER-mxnet"]
path = SNIPER-mxnet
url = git@github.com:mahyarnajibi/SNIPER-mxnet.git
url = https://github.com/mahyarnajibi/SNIPER-mxnet
11 changes: 11 additions & 0 deletions requirements.txt
@@ -0,0 +1,11 @@
opencv-python
Cython
matplotlib
numpy
scipy
pyyaml
EasyDict
protobuf
argparse
scikit-image
tqdm
10 changes: 10 additions & 0 deletions scripts/compile.sh
@@ -0,0 +1,10 @@
#!/bin/bash
echo 'Compiling NMS module...'
(cd lib/nms; python setup_linux.py build_ext --inplace)
echo 'Compiling bbox module...'
(cd lib/bbox; python setup_linux.py build_ext --inplace)
#echo 'Compiling chips module...'
#(cd lib/chips; python setup.py)
echo 'Compiling coco api...'
(cd lib/dataset/pycocotools; python setup_linux.py build_ext --inplace)
echo 'All Done!'