pbhatia243 / Neural_Conversation_Models

Tensorflow based Neural Conversation Models
Apache License 2.0
191 stars 73 forks source link

hi,which version of tensorflow should be used? #12

Closed breezedeus closed 1 year ago

breezedeus commented 7 years ago

I tried to run it at tf 1.0, but didn't succeed.

hailiang-wang commented 7 years ago

@breezedeus tensorflow-0.12.1

hamedkhanpour commented 7 years ago

I'm using tensorflow 1.2.0-rc2 but the program returns the following error:

File "......\my_seq2seq.py", line 48, in from tensorflow.python.ops.rnn_cell import _linear as linear ImportError: cannot import name '_linear'

bshao001 commented 7 years ago

@hamedkhanpour Try: from tensorflow.python.ops import rnn_cell_impl linear = rnn_cell_impl._linear

bshao001 commented 7 years ago

I am trying to incorporate my_seq2seq.py into my chatbot in tensorflow 1.2, and it does not work. My changes were involved, but still no luck.