-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtrain_models.sh
More file actions
24 lines (20 loc) · 883 Bytes
/
train_models.sh
File metadata and controls
24 lines (20 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
python3 train_model.py \
--dataset websites --arch vgg16 --seed 111 \
--batch-size 32 --learning-rate 0.001 \
--epochs 30 --schedule 12 25 --gammas 0.1 0.1 --workers 4
python3 train_model.py \
--dataset websites --arch vgg19 --seed 111 \
--batch-size 32 --learning-rate 0.001 \
--epochs 30 --schedule 12 25 --gammas 0.1 0.1 --workers 4
python3 train_model.py \
--dataset websites --arch resnet18 --seed 111 \
--batch-size 32 --learning-rate 0.001 \
--epochs 30 --schedule 12 25 --gammas 0.1 0.1 --workers 4
python3 train_model.py \
--dataset websites --arch resnet50 --seed 111 \
--batch-size 32 --learning-rate 0.001 \
--epochs 30 --schedule 12 25 --gammas 0.1 0.1 --workers 4
python3 train_model.py \
--dataset websites --arch resnet152 --seed 111 \
--batch-size 32 --learning-rate 0.001 \
--epochs 30 --schedule 12 25 --gammas 0.1 0.1 --workers 4