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

Added link to MHP Dataset and correction in installation steps #14

Open
wants to merge 5 commits into
base: master
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

```
# install pytorch 1.1 and torchvision
sudo pip3 install torch==1.1 torchvision
sudo pip3 install torch==1.1 torchvision==0.3.0

# install apex
cd $INSTALL_DIR
git clone https://github.com/NVIDIA/apex.git
cd apex
sudo python setup.py install --cuda_ext --cpp_ext
pip3 install -v --no-cache-dir ./

# clone Hier-R-CNN
git clone https://github.com/soeaver/Parsing-R-CNN.git
git clone https://github.com/soeaver/Hier-R-CNN.git

# install other requirements
pip3 install -r requirements.txt
Expand All @@ -21,10 +21,10 @@ cd Hier-R-CNN
sh make.sh

# make cocoapi
cd Parsing-R-CNN/cocoapi/PythonAPI
mask
cd ../../
ln -s cocoapi/PythonAPI/pycocotools/ ./
cd Hier-R-CNN/cocoapi/PythonAPI
make
cd ../../../
ln -s Hier-R-CNN/cocoapi/PythonAPI/pycocotools/ ./
```

## Data and Pre-train weights
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ You need to download the datasets and annotations following this repo's formate.

- [CIHP](https://drive.google.com/open?id=1OLBd23ufm6CU8CZmLEYMdF-x2b8mRgxV)

- [MHP-v2](coming soon)
- [MHP-v2](https://lv-mhp.github.io/dataset)

- [DensePoseData](https://drive.google.com/open?id=1WiTLYVIgMyCDENXHPVEWW7qbZ-3EBjbt)(using original [MSCOCO2017](http://cocodataset.org/#download) images)

Expand Down