forked from GuyTevet/motion-diffusion-model
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix GuyTevet#87: download humanact dataset for the unconstrained sett…
…ing.
- Loading branch information
1 parent
03f67aa
commit a456a60
Showing
1 changed file
with
11 additions
and
2 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,10 +1,19 @@ | ||
mkdir -p dataset/HumanAct12Poses | ||
cd dataset/HumanAct12Poses | ||
mkdir -p dataset/ | ||
cd dataset/ | ||
|
||
echo "The datasets will be stored in the 'dataset' folder\n" | ||
|
||
# HumanAct12 poses | ||
echo "Downloading the HumanAct12 poses dataset" | ||
gdown "https://drive.google.com/uc?id=1130gHSvNyJmii7f6pv5aY5IyQIWc3t7R" | ||
echo "Extracting the HumanAct12 poses dataset" | ||
tar xfzv HumanAct12Poses.tar.gz | ||
echo "Cleaning\n" | ||
rm HumanAct12Poses.tar.gz | ||
|
||
# HumanAct12 poses unconstrained | ||
echo "Downloading the HumanAct12 unconstrained poses dataset" | ||
cd HumanAct12Poses | ||
gdown "1KqOBTtLFgkvWSZb8ao-wdBMG7sTP3Q7d" | ||
|
||
echo "Downloading done!" |