-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
120 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
weights/ | ||
.ipynb_checkpoints/ | ||
data/ | ||
.vscode/ | ||
*.sublime-workspace | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
set -x | ||
|
||
# Install Frankmocap | ||
rm -r external/frankmocap | ||
mkdir -p external | ||
rm -r externals/frankmocap | ||
mkdir -p externals | ||
git clone https://github.com/facebookresearch/frankmocap.git external/frankmocap | ||
cd external/frankmocap | ||
cd externals/frankmocap | ||
bash scripts/install_frankmocap.sh | ||
cd ../.. | ||
|
||
# install manopth | ||
pip install "git+https://github.com/hassony2/manopth.git" | ||
|
||
|
||
# install detectron2 | ||
# clone the repo in order to access pre-defined configs in PointRend project | ||
cd externals | ||
!git clone --branch v0.6 https://github.com/facebookresearch/detectron2.git detectron2 | ||
# install detectron2 from source | ||
!pip install -e detectron2 | ||
# See https://detectron2.readthedocs.io/tutorials/install.html for other installation options |