Reputation: 5102
I am trying to run a tensorflow code written for tensorflow0.11 and its giving me error
tf.nn.seq2seq.model_with_buckets(
AttributeError: 'module' object has no attribute 'seq2seq'
What is the correct implementation in Tensorflow 1.0
Upvotes: 0
Views: 333
Reputation: 3763
Here is a link to the page on tf.contrib.legacy_seq2seq.model_with_buckets
It is legacy code now in Tensorflow r1.0 and above.
Upvotes: 1