sherjilozair / char-rnn-tensorflow

Multi-layer Recurrent Neural Networks (LSTM, RNN) for character-level language models in Python using Tensorflow
MIT License
2.64k stars 960 forks source link

Added the last save #24

Closed hunkim closed 8 years ago

hunkim commented 8 years ago

This PR stores the last result even if it is not: % args.save_every == 0

Now, it saves the last result:

548/550 (epoch 49), train_loss = 1.981, time/batch = 0.453
549/550 (epoch 49), train_loss = 1.938, time/batch = 0.491
model saved to save/model.ckpt
sherjilozair commented 8 years ago

Thanks!