-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprepDirectoryAdditionalExp.sh
35 lines (31 loc) · 1.26 KB
/
prepDirectoryAdditionalExp.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash
echo "###############################"
echo "## Preparing Datasets ##"
echo "###############################"
echo ""
wget --no-check-certificate https://huggingface.co/datasets/shashikg/visual_search_klab/resolve/main/dataset_saccade.zip -O ./dataset_saccade.zip
echo "Extracting..."
unzip dataset_saccade.zip -d ./vs_saccade_exp/
echo ""
echo "##########################################"
echo "## Downloading Additional Models ##"
echo "##########################################"
echo ""
wget --no-check-certificate https://huggingface.co/shashikg/visual_search_klab/resolve/main/data_augmented_trained_model.zip -O ./data_augmented_trained_model.zip
echo "Extracting..."
unzip data_augmented_trained_model.zip
echo ""
echo "###############################"
echo "## Cleaning Directory... ##"
echo "###############################"
echo ""
rm dataset_saccade.zip data_augmented_trained_model.zip
echo ""
echo "###############################"
echo "## Installing ScanMatchPy ##"
echo "###############################"
echo ""
echo "[INFO]: You may need to provide sudo rights to install matlab runtime included in ScanMatchPy"
# eval "$(conda shell.bash hook)"
# conda activate vsa_nips_klab
# pip install git+https://github.com/kreimanlab/ScanMatchPy