Hpyerparameters for training
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Number of Epochs | |
num_epochs = 50 | |
# Batch Size | |
batch_size = 32 | |
# RNN Size | |
rnn_size = 512 | |
# Embedding Dimension Size | |
embed_dim = 256 | |
# Sequence Length | |
seq_length = 16 | |
# Learning Rate | |
learning_rate = 0.001 | |
# Show stats for every n number of batches | |
show_every_n_batches = 200 | |
# where to save the trained model | |
save_dir = './save' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment