Skip to content

Commit

Permalink
🔨 add dataset installation script
Browse files Browse the repository at this point in the history
  • Loading branch information
TristanBilot committed Mar 30, 2022
1 parent 7429dcd commit 0e031d7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions install_dataset.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

# unzip dataset zip files
unzip data/test/processed/test-processed.zip -d data/test/processed
unzip data/train/processed/train-processed.zip -d data/train/processed

GREEN='\033[1;32m'
RED='\033[1;31m'
NC='\033[0m'

if [ $? -eq 0 ]; then
printf "${GREEN}Datasets extracted successfully.${NC}"
else
printf "${RED}Dataset extraction failed.${NC}"
fi

0 comments on commit 0e031d7

Please sign in to comment.