-
Notifications
You must be signed in to change notification settings - Fork 6
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
1 parent
0b86ebc
commit 34bd8ff
Showing
4 changed files
with
34 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -31,7 +31,6 @@ Thumbs.db | |
**/*.pyc | ||
*.pyc | ||
*.out | ||
*.sh | ||
*.png | ||
*.pth | ||
*.pt | ||
|
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
cd ./data/ | ||
|
||
echo -e "Downloading glove (in use by the evaluators)" | ||
gdown --fuzzy https://drive.google.com/file/d/1cmXKUT31pqd7_XpJAiWEo1K81TMYHA5n/view?usp=sharing | ||
rm -rf glove | ||
|
||
unzip glove.zip | ||
echo -e "Cleaning\n" | ||
rm glove.zip | ||
cd .. | ||
|
||
echo -e "Downloading done!" |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
mkdir -p data/ | ||
cd data/ | ||
mkdir -p checkpoints/ | ||
cd checkpoints/ | ||
|
||
echo "The t2m evaluators will be stored in the './deps' folder" | ||
|
||
echo "Downloading" | ||
gdown --fuzzy https://drive.google.com/file/d/16hyR4XlEyksVyNVjhIWK684Lrm_7_pvX/view?usp=sharing | ||
echo "Extracting" | ||
unzip t2m.zip | ||
echo "Cleaning" | ||
rm t2m.zip | ||
|
||
cd ../.. | ||
|
||
echo "Downloading done!" |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
mkdir -p deps/ | ||
cd deps/ | ||
git lfs install | ||
git clone https://huggingface.co/openai/clip-vit-large-patch14 | ||
cd .. |