RNN_Text_Generation_Tensorflow
RNN_Text_Generation_Tensorflow copied to clipboard
The code doesn't output anything
As you can see after i've terminated the program it doesn't output anything but multiple errors. Same thing happens when i run
$ python rnn_tf.py saved/model.ckpt "The "
although i doesn't happen when i run this code:
$ python rnn_tf.py
another thing that doesn't work is the relative position of the file. So i always have to give the absolute position of data/shakespeare.txt. All of the program runs in terminal Mac version 10.12. İ use python 3.6.2.
İf you need any other information please just ask.
Thank you in advance!
@theNewRootUser Output does come. As NUM_TRAIN_BATCHES = 20000, you have to let the model run. The model was still working (you can see the batches going is still at 15600. It takes a bit more time later as the loss is to be reduced further. If you need model to finish early, you can reduce the training batches number from rnn_tf.py line 151.