HomeSort by relevance Sort by last modified time
    Searched refs:batch_x (Results 1 - 4 of 4) sorted by null

  /external/tensorflow/tensorflow/lite/experimental/examples/lstm/
bidirectional_sequence_lstm_test.py 123 batch_x, batch_y = self.mnist.train.next_batch(
126 batch_x = batch_x.reshape((self.batch_size, self.time_steps,
128 sess.run(opt, feed_dict={x: batch_x, y: batch_y})
unidirectional_sequence_lstm_test.py 114 batch_x, batch_y = self.mnist.train.next_batch(
117 batch_x = batch_x.reshape((self.batch_size, self.time_steps,
119 sess.run(opt, feed_dict={x: batch_x, y: batch_y})
unidirectional_sequence_rnn_test.py 109 batch_x, batch_y = self.mnist.train.next_batch(
112 batch_x = batch_x.reshape((self.batch_size, self.time_steps,
114 sess.run(opt, feed_dict={x: batch_x, y: batch_y})
bidirectional_sequence_rnn_test.py 142 batch_x, batch_y = self.mnist.train.next_batch(
145 batch_x = batch_x.reshape((self.batch_size, self.time_steps,
147 sess.run(opt, feed_dict={x: batch_x, y: batch_y})

Completed in 1385 milliseconds