Jibin Mathew
Jibin Mathew

Reputation: 5102

Right implementation for seq2seq in tensorflow 1.0

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

Answers (1)

Anton Panchishin
Anton Panchishin

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

Related Questions