From 384b300de593f90b5c25aabf27cc50ffd23f77ce Mon Sep 17 00:00:00 2001 From: RUPESH Date: Mon, 20 Jul 2020 11:19:32 +0530 Subject: [PATCH 1/4] Added link to MHP Dataset Linked dataset https://lv-mhp.github.io/dataset --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ba7c5ff..b582fbb 100644 --- a/README.md +++ b/README.md @@ -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) From 3b0a37b7b2dc6fe54c2d2e703f590a37c0a8dead Mon Sep 17 00:00:00 2001 From: RUPESH Date: Mon, 20 Jul 2020 16:07:29 +0530 Subject: [PATCH 2/4] Correcting link for Hier rcnn --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index ef07481..954be67 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -11,7 +11,7 @@ cd apex sudo python setup.py install --cuda_ext --cpp_ext # 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 From d4f0805b375b8a0c36411c88a7c4a57f56303bd7 Mon Sep 17 00:00:00 2001 From: RUPESH Date: Mon, 20 Jul 2020 16:14:16 +0530 Subject: [PATCH 3/4] Added some correction in installation 1. make mistyped as mask 2. cocoapi folder is in Hier-RCNN directory 3. updated the apex installation method from their official readme from https://github.com/NVIDIA/apex --- INSTALL.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 954be67..7e45453 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -8,7 +8,7 @@ sudo pip3 install torch==1.1 torchvision 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/Hier-R-CNN.git @@ -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 From 57f13924e6210defd39ac1f506db40e99e6b6264 Mon Sep 17 00:00:00 2001 From: RUPESH Date: Mon, 20 Jul 2020 16:42:52 +0530 Subject: [PATCH 4/4] Correct version of torchvision correcting torchvision version as per this repo for the corresponding torch version https://github.com/pytorch/vision --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 7e45453..31102ea 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -2,7 +2,7 @@ ``` # 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