# f32

# RNN
# direction
# l2r
--reset --alg=VANILLA_RNN
--direction=left2right
--activation=RELU
--prop=FWD_D --batch=rnn_small
--prop=BWD_DW --batch=rnn_small

# r2l
--reset --alg=VANILLA_RNN
--direction=right2left
--activation=RELU
--prop=FWD_D --batch=rnn_small
--prop=BWD_DW --batch=rnn_small

# concat
--reset --alg=VANILLA_RNN
--direction=concat
--activation=RELU
--prop=FWD_D --batch=rnn_small
--prop=BWD_DW --batch=rnn_small

# sum
--reset --alg=VANILLA_RNN
--direction=sum
--activation=RELU
--prop=FWD_D --batch=rnn_small
--prop=BWD_DW --batch=rnn_small

# activation
--reset --alg=VANILLA_RNN
--direction=left2right
--activation=TANH
--prop=FWD_D --batch=rnn_small
--prop=BWD_DW --batch=rnn_small

--reset --alg=VANILLA_RNN
--direction=left2right
--activation=LOGISTIC
--prop=FWD_D --batch=rnn_small
--prop=BWD_DW --batch=rnn_small

# LSTM
--reset --alg=VANILLA_LSTM
--direction=left2right
--activation=TANH
--prop=FWD_D --batch=rnn_small
--prop=BWD_DW --batch=rnn_small

# GRU
--reset --alg=VANILLA_GRU
--direction=left2right
--activation=TANH
--prop=FWD_D --batch=rnn_gru_small
--prop=BWD_DW --batch=rnn_gru_small

# LBR_GRU
--reset --alg=LBR_GRU
--direction=left2right
--activation=TANH
--prop=FWD_D --batch=rnn_small
--prop=BWD_DW --batch=rnn_small

