-
Notifications
You must be signed in to change notification settings - Fork 10
/
train_CIFAR.sh
72 lines (64 loc) · 1.79 KB
/
train_CIFAR.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env sh
############### Host ##############################
HOST=$(hostname)
echo "Current host is: $HOST"
# Automatic check the host and configure
case $HOST in
"alpha")
PYTHON="/home/elliot/anaconda3/envs/pytorch041/bin/python" # python environment path
TENSORBOARD='/home/elliot/anaconda3/envs/pytorch041/bin/tensorboard' # tensorboard environment path
data_path='/home/elliot/data/pytorch/cifar10'
;;
esac
DATE=`date +%Y-%m-%d`
if [ ! -d "$DIRECTORY" ]; then
mkdir ./save/${DATE}/
fi
############### Configurations ########################
enable_tb_display=false # enable tensorboard display
model=resnet20_quan
dataset=cifar10
epochs=160
train_batch_size=128
test_batch_size=128
optimizer=SGD
label_info=binarized
save_path=./save/${DATE}/${dataset}_${model}_${epochs}_${optimizer}_${label_info}
tb_path=${save_path}/tb_log #tensorboard log path
############### Neural network ############################
{
$PYTHON main.py --dataset ${dataset} \
--data_path ${data_path} \
--arch ${model} --save_path ${save_path} \
--epochs ${epochs} --learning_rate 0.1 \
--optimizer ${optimizer} \
--schedule 80 120 --gammas 0.1 0.1 \
--attack_sample_size ${train_batch_size} \
--test_batch_size ${test_batch_size} \
--workers 4 --ngpu 1 --gpu_id 1 \
--print_freq 100 --decay 0.0003 --momentum 0.9 \
# --clustering --lambda_coeff 1e-3
} &
############## Tensorboard logging ##########################
{
if [ "$enable_tb_display" = true ]; then
sleep 30
wait
$TENSORBOARD --logdir $tb_path --port=6006
fi
} &
{
if [ "$enable_tb_display" = true ]; then
sleep 45
wait
case $HOST in
"Hydrogen")
firefox http://0.0.0.0:6006/
;;
"alpha")
google-chrome http://0.0.0.0:6006/
;;
esac
fi
} &
wait