Searched refs:BasicLSTMCell (Results 1 – 19 of 19) sorted by relevance
/external/tensorflow/tensorflow/contrib/legacy_seq2seq/python/kernel_tests/ |
D | seq2seq_test.py | 105 cell_fn = lambda: rnn_cell.BasicLSTMCell(2) 138 cell_fn = lambda: rnn_cell.BasicLSTMCell(2) 158 cell_nt = rnn_cell.BasicLSTMCell(2, state_is_tuple=False) 242 cell = functools.partial(rnn_cell.BasicLSTMCell, 2, state_is_tuple=True) 422 single_cell = lambda: rnn_cell.BasicLSTMCell( # pylint: disable=g-long-lambda 455 cells=[rnn_cell.BasicLSTMCell(2) for _ in range(2)]) 527 cell_fn = lambda: rnn_cell.BasicLSTMCell(2) 548 rnn_cell.BasicLSTMCell, 2, state_is_tuple=False) 643 return rnn_cell.BasicLSTMCell(2, state_is_tuple=True) 645 return dict((k, rnn_cell.BasicLSTMCell(2, state_is_tuple=True)) [all …]
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.nn.rnn_cell.pbtxt | 4 name: "BasicLSTMCell"
|
D | tensorflow.nn.rnn_cell.-basic-l-s-t-m-cell.pbtxt | 1 path: "tensorflow.nn.rnn_cell.BasicLSTMCell" 3 is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.BasicLSTMCell\'>"
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | rnn_test.py | 184 rnn_cell_impl.BasicLSTMCell, 356 self._assert_cell_builds(rnn_cell_impl.BasicLSTMCell, f32, 5, 7, 3) 357 self._assert_cell_builds(rnn_cell_impl.BasicLSTMCell, f64, 5, 7, 3) 629 basic_cell = rnn_cell_impl.BasicLSTMCell(1) 656 rnn_cell_impl.BasicLSTMCell(32, dtype=dtypes.float32), 681 "BasicLSTMCell": rnn_cell_impl.BasicLSTMCell
|
D | rnn_cell_test.py | 2573 rnn_cell_impl.BasicLSTMCell(2, state_is_tuple=False) 2618 g, out_m = rnn_cell_impl.BasicLSTMCell(2, state_is_tuple=False)(x, m) 2640 g, out_m = rnn_cell_impl.BasicLSTMCell( 2661 g, out_m = rnn_cell_impl.BasicLSTMCell( 2679 [rnn_cell_impl.BasicLSTMCell(2) for _ in range(2)], 2712 rnn_cell_impl.BasicLSTMCell(2, state_is_tuple=False)
|
/external/tensorflow/tensorflow/contrib/cudnn_rnn/python/kernel_tests/ |
D | cudnn_rnn_ops_benchmark.py | 133 [contrib_rnn.BasicLSTMCell(num_units) for _ in range(num_layers)])
|
/external/tensorflow/tensorflow/contrib/grid_rnn/python/ops/ |
D | grid_rnn_cell.py | 382 return rnn.BasicLSTMCell(num_units=n, forget_bias=forget_bias) 413 return rnn.BasicLSTMCell(num_units=n, forget_bias=forget_bias)
|
/external/tensorflow/tensorflow/python/ops/parallel_for/ |
D | gradients_test.py | 78 cell = rnn_cell.BasicLSTMCell(state_size) 95 cell = rnn_cell.BasicLSTMCell(state_size) 191 cell = rnn_cell.BasicLSTMCell(state_size)
|
D | control_flow_ops_test.py | 934 pfor_outputs, tf_outputs = create_dynamic_lstm(rnn_cell.BasicLSTMCell,
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/ |
D | models.py | 340 contrib_rnn.BasicLSTMCell, state_is_tuple=False)
|
/external/tensorflow/tensorflow/contrib/model_pruning/python/layers/ |
D | rnn_cells.py | 37 class MaskedBasicLSTMCell(tf_rnn.BasicLSTMCell):
|
/external/tensorflow/tensorflow/contrib/eager/python/examples/rnn_colorbot/ |
D | rnn_colorbot.py | 156 [tf.nn.rnn_cell.BasicLSTMCell(size) for size in rnn_cell_sizes])
|
/external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/ |
D | rnn_cell_test.py | 295 rnn_cell_impl.BasicLSTMCell(1, state_is_tuple=True), 782 lstm_cell = rnn_cell.BasicLSTMCell( 793 lstm_cell = rnn_cell.BasicLSTMCell(num_units, state_is_tuple=True) 810 lstm_cell = rnn_cell.BasicLSTMCell( 861 lstm_cell = rnn_cell.BasicLSTMCell( 941 lstm_cell = rnn_cell.BasicLSTMCell(
|
D | lstm_ops_test.py | 318 [rnn_cell.BasicLSTMCell(2, state_is_tuple=True) for _ in range(2)],
|
/external/tensorflow/tensorflow/python/ops/ |
D | rnn_cell_impl.py | 633 class BasicLSTMCell(LayerRNNCell): class 692 super(BasicLSTMCell, self).__init__( 797 base_config = super(BasicLSTMCell, self).get_config()
|
/external/tensorflow/tensorflow/contrib/eager/python/examples/rnn_ptb/ |
D | rnn_ptb.py | 54 tf.nn.rnn_cell.BasicLSTMCell(num_units=hidden_dim)
|
/external/tensorflow/tensorflow/lite/schema/ |
D | schema.fbs | 448 // Basic LSTM kernels. Equivalent to TensorFlow BasicLSTMCell.
|
/external/tensorflow/tensorflow/lite/testing/ |
D | generate_examples.py | 3028 lstm_cell = tf.contrib.rnn.BasicLSTMCell(
|
/external/tensorflow/ |
D | RELEASE.md | 1735 * LSTMCell, BasicLSTMCell, and MultiRNNCell constructors now default to
|