Skip to content

Instantly share code, notes, and snippets.

@chricke
Last active March 26, 2019 12:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chricke/adc4e8a279ec041e9a729edcfee6ad65 to your computer and use it in GitHub Desktop.
Save chricke/adc4e8a279ec041e9a729edcfee6ad65 to your computer and use it in GitHub Desktop.
Hpyerparameters for training
# 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