suriyadeepan / practical_seq2seq

A simple, minimal wrapper for tensorflow's seq2seq module, for experimenting with datasets rapidly
http://suriyadeepan.github.io/2016-12-31-practical-seq2seq/
GNU General Public License v3.0
569 stars 270 forks source link

tensorflow 1.0 #29

Open nicks165 opened 7 years ago

nicks165 commented 7 years ago

The codebase is not working with tensorflow 1.0. What is the best way to make it compatible?

jshin49 commented 7 years ago

I am getting the same problem, and it doesn't even work with TF 0.12.1 as the code apparently seems to use TF1.0 API

alyssaong1 commented 6 years ago

To downgrade: conda create -n tensorflow1.0 python=3.5 source activate tensorflow1.0 pip install tensorflow==1.0

Best to create a virtualenv first :)