Skip to content Skip to sidebar Skip to footer

Where Have The Old Tensorflow Rnn Files Gone?

https://github.com/tensorflow/tensorflow I found that below files related with RNN are all gone. tensorflow/tensorflow/models/... tensorflow/tensorflow/python/ops/seq2seq.py tensor

Solution 1:

There has been a major refactor in the TensorFlow repository, which is causing a few errors and some inconvinience unfortunately. Coming to your questions,

tensorflow/tensorflow/models/...

All the models have moved to https://github.com/tensorflow/models.

tensorflow/tensorflow/python/ops/seq2seq.py

This file has been moved to the legacy_seq2seq, more specifically to https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/legacy_seq2seq/python/ops/seq2seq.py.

tensorflow/tensorflow/python/ops/rnn_cell.py

The implementations of the RNN cells have moved to https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/rnn/python/ops/core_rnn_cell_impl.py.

Post a Comment for "Where Have The Old Tensorflow Rnn Files Gone?"