Skip to content

Commit 773840d

Browse files
authored
fixed rnn_cell import error
rnn, rnn_cell module is shifted to tensorflow.python.ops
1 parent 255dffa commit 773840d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/3_NeuralNetworks/recurrent_network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
'''
99

1010
import tensorflow as tf
11-
from tensorflow.models.rnn import rnn, rnn_cell
11+
from tensorflow.python.ops import rnn, rnn_cell
1212
import numpy as np
1313

1414
# Import MINST data

0 commit comments

Comments
 (0)