-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtrain_script_3
38 lines (33 loc) · 1.73 KB
/
train_script_3
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
embtarget=3modelsvarembtarget1000
embtransfer=3modelsvarembtransfer1000
defdef=3modelsvardefdef1000
vaedef=3modelsvarvaedef1000
mkdir -p $embtarget
mkdir -p $embtransfer
mkdir -p $defdef
mkdir -p $vaedef
lstm_hidden=1024
input_dim=19
clip_grad=clip
n_z=512
n_z_m=512
n_z_m_2=512
epochs=50
transfertype=2
transfer_to_softmax=True
batch_size=500
word_drop_prob=0.1
vartype=var
maxlen=30
encode_mode=ae
target_emb_dim=500
losstype=not_ctc
bdlstmtype=forward
lstm_stack=3
# python def_vae_Emb.py $vartype $encode_mode $clip_grad $batch_size no_transfer $input_dim $lstm_hidden $embtarget $maxlen $n_z $n_z_m $n_z_m_2 $target_emb_dim $word_drop_prob 1 False $lstm_stack $bdlstmtype
python def_vae_Emb.py $vartype $encode_mode $clip_grad $batch_size transfer $input_dim $lstm_hidden $embtransfer $maxlen $n_z $n_z_m $n_z_m_2 $target_emb_dim $word_drop_prob 1 True $lstm_stack $bdlstmtype
python def_vae_Emb.py $vartype $encode_mode $clip_grad $batch_size no_transfer $input_dim $lstm_hidden $embtransfer $maxlen $n_z $n_z_m $n_z_m_2 $target_emb_dim $word_drop_prob 1 True $lstm_stack $bdlstmtype
python def_def.py $vartype $encode_mode $clip_grad $batch_size transfer $input_dim $lstm_hidden $defdef $maxlen $n_z $n_z_m $n_z_m_2 1 $losstype $lstm_stack $bdlstmtype
python def_def.py $vartype $encode_mode $clip_grad $batch_size no_transfer $input_dim $lstm_hidden $defdef $maxlen $n_z $n_z_m $n_z_m_2 1 $losstype $lstm_stack $bdlstmtype
python VAE_def3.py $vartype mid_vae $clip_grad $batch_size transfer $input_dim $lstm_hidden $vaedef $maxlen $n_z $n_z_m $n_z_m_2 $transfertype 1 $losstype $lstm_stack
python VAE_def3.py $vartype mid_vae $clip_grad $batch_size no_transfer $input_dim $lstm_hidden $vaedef $maxlen $n_z $n_z_m $n_z_m_2 no_t_type 1 $losstype $lstm_stack