Aymeric Damien пре 9 година
родитељ
комит
897fe2c243
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      examples/3_NeuralNetworks/dynamic_rnn.py

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

@@ -146,7 +146,7 @@ def dynamicRNN(x, seqlen, weights, biases):
     # Indexing
     outputs = tf.gather(tf.reshape(outputs, [-1, n_hidden]), index)
 
-    # Linear activation, using rnn inner loop last output
+    # Linear activation, using outputs computed above
     return tf.matmul(outputs, weights['out']) + biases['out']
 
 pred = dynamicRNN(x, seqlen, weights, biases)