You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run %run -i sample.py in IPython console or just python sample.py, I get the following error:
In [1]: %run -i sample.py
WARNING:tensorflow:<tensorflow.python.ops.rnn_cell_impl.BasicLSTMCell object at 0x7f093d719390>: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True.
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
~/Downloads/write-rnn-tensorflow/sample.py in ()
34 saved_args = pickle.load(f)
35
---> 36 model = Model(saved_args, True)
37 sess = tf.InteractiveSession()
38 #saver = tf.train.Saver(tf.all_variables())
When I run
%run -i sample.py
in IPython console or justpython sample.py
, I get the following error:Does this has something to do with the latest version of Tensorflow? I am using
v1.3.0
if that helps.The text was updated successfully, but these errors were encountered: