Procházet zdrojové kódy

Update dynamic_rnn.py

Aymeric Damien před 9 roky
rodič
revize
897fe2c243
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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)