Dogfish2016
Dogfish2016

Reputation: 25

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
tensorflow/tensorflow/python/ops/rnn_cell.py

Seems new dynamic_rnn has come up...

I'm a little confused by what happened. Why are these files deleted? Actually I'm analyzing these codes to train a chatbot.

Upvotes: 1

Views: 316

Answers (1)

martianwars
martianwars

Reputation: 6500

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.

Upvotes: 2

Related Questions