hardmaru / write-rnn-tensorflow

Generative Handwriting using LSTM Mixture Density Network with TensorFlow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TF 0.9: import of rnn_cell and seq2seq deprecated

edwin-de-jong opened this issue · comments

With TF 0.9, this gives the errors mentioned in the title.
This can be resolved by replacing rnn_cell with tf.nn.rnn_cell and seq2seq with tf.nn.seq2seq.

Thx for the fix-