-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-experiments.sh
8 lines (7 loc) · 1.48 KB
/
run-experiments.sh
1
2
3
4
5
6
7
8
#!/bin/sh
python mlp/pytorch_experiment_scripts/train_evaluate_emnist_classification_system.py --batch_size 100 --seed 0 --num_filters 32 --dim_reduction_type dilated_convolution --dilation 1 --dropout True --experiment_name dilation_final_test1 --use_gpu True
python mlp/pytorch_experiment_scripts/train_evaluate_emnist_classification_system.py --batch_size 100 --seed 0 --num_filters 32 --dim_reduction_type dilated_convolution --dilation 1 --dropout True --experiment_name dilation_final_test2 --use_gpu True
python mlp/pytorch_experiment_scripts/train_evaluate_emnist_classification_system.py --batch_size 100 --seed 0 --num_filters 32 --dim_reduction_type dilated_convolution --dilation 1 --dropout True --experiment_name dilation_final_test3 --use_gpu True
python mlp/pytorch_experiment_scripts/train_evaluate_emnist_classification_system.py --batch_size 100 --seed 0 --num_filters 32 --dim_reduction_type strided_convolution --stride 1 --dropout True --experiment_name stride_final_test1 --use_gpu True
python mlp/pytorch_experiment_scripts/train_evaluate_emnist_classification_system.py --batch_size 100 --seed 0 --num_filters 32 --dim_reduction_type strided_convolution --stride 1 --dropout True --experiment_name stride_final_test2 --use_gpu True
python mlp/pytorch_experiment_scripts/train_evaluate_emnist_classification_system.py --batch_size 100 --seed 0 --num_filters 32 --dim_reduction_type strided_convolution --stride 1 --dropout True --experiment_name stride_final_test3 --use_gpu True