-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrun_test.sh
16 lines (16 loc) · 1.45 KB
/
run_test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
echo "#################### Running Tests ###########################"
echo "#################### Entmax ###########################"
python train.py --bs=128 --epochs=1 --sparse --tiny
echo "############################################################################################################"
echo "#################### Adaptive ###########################"
python train.py --bs=128 --epochs=1 --adaptive --tiny
echo "############################################################################################################"
echo "#################### Adaptive + Entmax ###########################"
python train.py --bs=128 --epochs=1 --adaptive --sparse --tiny
echo "############################################################################################################"
echo "#################### Loading checkpoint ###########################"
python train.py --bs=128 --epochs=1 --sparse --tiny --load_model=sparse_7
echo "############################################################################################################"
echo "#################### Testing evaluation ###########################"
python train.py --bs=128 --test --adaptive --load_model=adaptive_6910
echo "############################################################################################################"