-
Notifications
You must be signed in to change notification settings - Fork 4
/
run_main.sh
55 lines (52 loc) · 1.8 KB
/
run_main.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
# !bash ./run_main.sh
#python3 './main.py' \
# --mode 'train' \
# --lr 2e-4 \
# --batch_size 10 \
# --num_epoch 300 \
# --ny 256 \
# --nx 256 \
# --nch 3 \
# --nker 64 \
# --wgt 1e2 \
# --network 'pix2pix' \
# --data_dir './../../datasets/facaes' \
# --ckpt_dir './checkpoint' \
# --log_dir './log' \
# --result_dir './result'
python3 '/content/drive/My Drive/YouTube/pytorch-pix2pix/main.py' \
--mode 'train' \
--train_continue 'on' \
--lr 2e-4 \
--batch_size 10 \
--num_epoch 300 \
--ny 256 \
--nx 256 \
--nch 3 \
--nker 64 \
--wgt 1e2 \
--opts 'direction' 1 \
--norm 'bnorm' \
--network 'pix2pix' \
--data_dir '/content/drive/My Drive/datasets/facades' \
--ckpt_dir '/content/drive/My Drive/YouTube/pytorch-pix2pix/checkpoint_b2a_bnorm' \
--log_dir '/content/drive/My Drive/YouTube/pytorch-pix2pix/log_b2a_bnorm' \
--result_dir '/content/drive/My Drive/YouTube/pytorch-pix2pix/result_b2a_bnorm'
python3 '/content/drive/My Drive/YouTube/pytorch-pix2pix/main.py' \
--mode 'train' \
--train_continue 'on' \
--lr 2e-4 \
--batch_size 10 \
--num_epoch 300 \
--ny 256 \
--nx 256 \
--nch 3 \
--nker 64 \
--wgt 1e2 \
--opts 'direction' 1 \
--norm 'inorm' \
--network 'pix2pix' \
--data_dir '/content/drive/My Drive/datasets/facades' \
--ckpt_dir '/content/drive/My Drive/YouTube/pytorch-pix2pix/checkpoint_b2a_inorm' \
--log_dir '/content/drive/My Drive/YouTube/pytorch-pix2pix/log_b2a_inorm' \
--result_dir '/content/drive/My Drive/YouTube/pytorch-pix2pix/result_b2a_inorm'