-
Notifications
You must be signed in to change notification settings - Fork 2
/
with-generated.sh
67 lines (62 loc) · 1.23 KB
/
with-generated.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
cd ..
DATA_DIR=data
FEAT_DIR=feat/cyclegan
EXP_DIR=exp/cyclegan
python3 train.py \
--dataset=cub \
--temp=0.05 \
--batch-size=64 \
--lr=0.01 \
--exp-dir=$EXP_DIR \
--gan-path=$FEAT_DIR/cub/feat.npz \
--data-dir=$DATA_DIR \
--epochs=25 \
--seed=456 \
--mlp \
--nhidden=2048 \
--sentences \
--ent=0.1 \
--margin=0.2
python3 train.py \
--dataset=sun \
--temp=0.05 \
--batch-size=64 \
--lr=0.01 \
--exp-dir=$EXP_DIR \
--gan-path=$FEAT_DIR/sun/feat.npz \
--data-dir=$DATA_DIR \
--epochs=25 \
--seed=456 \
--mlp \
--nhidden=1024 \
--ent=0.1 \
--margin=0.2
python3 train.py \
--dataset=awa1 \
--temp=0.05 \
--batch-size=64 \
--lr=0.0001 \
--exp-dir=$EXP_DIR \
--gan-path=$FEAT_DIR/awa1/feat.npz \
--data-dir=$DATA_DIR \
--epochs=5 \
--seed=456 \
--mlp \
--nhidden=1024 \
--ent=0.5 \
--margin=0.2 \
--no-decay
python3 train.py \
--dataset=flo \
--temp=0.05 \
--batch-size=64 \
--lr=0.01 \
--exp-dir=$EXP_DIR \
--gan-path=$FEAT_DIR/flo/feat.npz \
--data-dir=$DATA_DIR \
--epochs=50 \
--seed=456 \
--mlp \
--nhidden=2048 \
--ent=0.1 \
--margin=0.2