Home
last modified time | relevance | path

Searched refs:BasicLSTMCell (Results 1 – 19 of 19) sorted by relevance

/external/tensorflow/tensorflow/contrib/legacy_seq2seq/python/kernel_tests/
Dseq2seq_test.py105 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/
Dtensorflow.nn.rnn_cell.pbtxt4 name: "BasicLSTMCell"
Dtensorflow.nn.rnn_cell.-basic-l-s-t-m-cell.pbtxt1 path: "tensorflow.nn.rnn_cell.BasicLSTMCell"
3 is_instance: "<class \'tensorflow.python.ops.rnn_cell_impl.BasicLSTMCell\'>"
/external/tensorflow/tensorflow/python/kernel_tests/
Drnn_test.py184 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
Drnn_cell_test.py2573 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/
Dcudnn_rnn_ops_benchmark.py133 [contrib_rnn.BasicLSTMCell(num_units) for _ in range(num_layers)])
/external/tensorflow/tensorflow/contrib/grid_rnn/python/ops/
Dgrid_rnn_cell.py382 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/
Dgradients_test.py78 cell = rnn_cell.BasicLSTMCell(state_size)
95 cell = rnn_cell.BasicLSTMCell(state_size)
191 cell = rnn_cell.BasicLSTMCell(state_size)
Dcontrol_flow_ops_test.py934 pfor_outputs, tf_outputs = create_dynamic_lstm(rnn_cell.BasicLSTMCell,
/external/tensorflow/tensorflow/contrib/learn/python/learn/
Dmodels.py340 contrib_rnn.BasicLSTMCell, state_is_tuple=False)
/external/tensorflow/tensorflow/contrib/model_pruning/python/layers/
Drnn_cells.py37 class MaskedBasicLSTMCell(tf_rnn.BasicLSTMCell):
/external/tensorflow/tensorflow/contrib/eager/python/examples/rnn_colorbot/
Drnn_colorbot.py156 [tf.nn.rnn_cell.BasicLSTMCell(size) for size in rnn_cell_sizes])
/external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/
Drnn_cell_test.py295 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(
Dlstm_ops_test.py318 [rnn_cell.BasicLSTMCell(2, state_is_tuple=True) for _ in range(2)],
/external/tensorflow/tensorflow/python/ops/
Drnn_cell_impl.py633 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/
Drnn_ptb.py54 tf.nn.rnn_cell.BasicLSTMCell(num_units=hidden_dim)
/external/tensorflow/tensorflow/lite/schema/
Dschema.fbs448 // Basic LSTM kernels. Equivalent to TensorFlow BasicLSTMCell.
/external/tensorflow/tensorflow/lite/testing/
Dgenerate_examples.py3028 lstm_cell = tf.contrib.rnn.BasicLSTMCell(
/external/tensorflow/
DRELEASE.md1735 * LSTMCell, BasicLSTMCell, and MultiRNNCell constructors now default to