瀏覽代碼

fixed rnn_cell import error

rnn, rnn_cell module is shifted to tensorflow.python.ops
meagmohit 9 年之前
父節點
當前提交
773840ded4
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/3_NeuralNetworks/recurrent_network.py

+ 1 - 1
examples/3_NeuralNetworks/recurrent_network.py

@@ -8,7 +8,7 @@ Project: https://github.com/aymericdamien/TensorFlow-Examples/
 '''
 
 import tensorflow as tf
-from tensorflow.models.rnn import rnn, rnn_cell
+from tensorflow.python.ops import rnn, rnn_cell
 import numpy as np
 
 # Import MINST data