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

  /external/tensorflow/tensorflow/contrib/rnn/python/ops/
core_rnn_cell.py 42 RNNCell = rnn_cell_impl.RNNCell
192 class EmbeddingWrapper(RNNCell):
210 cell: an RNNCell, an embedding will be put before its inputs.
220 TypeError: if cell is not an RNNCell.
225 raise TypeError("The parameter cell is not RNNCell.")
273 class InputProjectionWrapper(RNNCell):
290 cell: an RNNCell, a projection of inputs is added before it.
299 TypeError: if cell is not an RNNCell.
305 raise TypeError("The parameter cell is not RNNCell."
    [all...]
rnn_cell.py 93 class CoupledInputForgetGateLSTMCell(rnn_cell_impl.RNNCell):
318 class TimeFreqLSTMCell(rnn_cell_impl.RNNCell):
492 class GridLSTMCell(rnn_cell_impl.RNNCell):
    [all...]
  /external/tensorflow/tensorflow/python/ops/
rnn_cell_impl.py 58 """Checks that a given object is an RNNCell by using duck typing."""
137 @tf_export("nn.rnn_cell.RNNCell")
138 class RNNCell(base_layer.Layer):
141 Every `RNNCell` must have the properties below and implement `call` with
181 return super(RNNCell, self).__call__(inputs, state, scope=scope)
190 return super(RNNCell, self).__call__(inputs, state)
258 class LayerRNNCell(RNNCell):
261 For backwards compatibility purposes, most `RNNCell` instances allow their
267 Here we provide a subclass for `RNNCell` objects that act exactly as
292 # Bypass RNNCell's variable capturing semantics for LayerRNNCell
    [all...]
  /external/tensorflow/tensorflow/contrib/crf/python/ops/
crf.py 262 class CrfForwardRnnCell(rnn_cell.RNNCell):
349 class CrfDecodeForwardRnnCell(rnn_cell.RNNCell):
400 class CrfDecodeBackwardRnnCell(rnn_cell.RNNCell):
  /external/tensorflow/tensorflow/contrib/learn/python/learn/
models.py 226 cell_fw: An instance of RNNCell, to be used for forward direction.
227 cell_bw: An instance of RNNCell, to be used for backward direction.
248 TypeError: If "cell_fw" or "cell_bw" is not an instance of RNNCell.
252 if not isinstance(cell_fw, contrib_rnn.RNNCell):
253 raise TypeError('cell_fw must be an instance of RNNCell')
254 if not isinstance(cell_bw, contrib_rnn.RNNCell):
255 raise TypeError('cell_bw must be an instance of RNNCell')
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
rnn_common.py 57 """Constructs and return a single `RNNCell`.
60 cell_type: Either a string identifying the `RNNCell` type or a subclass of
61 `RNNCell`.
62 num_units: The number of units in the `RNNCell`.
64 An initialized `RNNCell`.
66 ValueError: `cell_type` is an invalid `RNNCell` name.
67 TypeError: `cell_type` is not a string or a subclass of `RNNCell`.
70 if not cell_type or not issubclass(cell_type, contrib_rnn.RNNCell):
85 `RNNCell`s.
86 cell_type: A string identifying the `RNNCell` type or a subclass o
    [all...]
dynamic_rnn_estimator_test.py 49 class IdentityRNNCell(rnn.RNNCell):
  /external/tensorflow/tensorflow/contrib/grid_rnn/python/ops/
grid_rnn_cell.py 34 class GridRNNCell(rnn.RNNCell):
88 and returns an object of type `RNNCell`. If None, LSTMCell with
90 Note that if you use a custom RNNCell (with `cell_fn`), it is your
99 Note that if you use a custom RNNCell (with `cell_fn`), it is your
107 TypeError: if cell_fn does not return an RNNCell instance.
136 if not isinstance(self._cells[0], rnn.RNNCell):
137 raise TypeError('cell_fn must return an RNNCell instance, saw: %s' %
  /external/tensorflow/tensorflow/python/kernel_tests/
rnn_test.py 51 class Plus1RNNCell(rnn_cell_impl.RNNCell):
66 class ScalarStateRNNCell(rnn_cell_impl.RNNCell):
84 class TensorArrayStateRNNCell(rnn_cell_impl.RNNCell):
  /external/tensorflow/tensorflow/contrib/legacy_seq2seq/python/ops/
seq2seq.py 122 cell: rnn_cell.RNNCell defining the cell function and size.
173 cell: tf.nn.rnn_cell.RNNCell defining the cell function and size.
205 cell: tf.nn.rnn_cell.RNNCell defining the cell function and size.
247 cell: tf.nn.rnn_cell.RNNCell defining the cell function.
323 cell: tf.nn.rnn_cell.RNNCell defining the cell function and size.
433 cell: tf.nn.rnn_cell.RNNCell defining the cell function and size.
562 cell: tf.nn.rnn_cell.RNNCell defining the cell function and size.
    [all...]
  /external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/
core_rnn_test.py 49 class Plus1RNNCell(rnn_lib.RNNCell):
64 class DummyMultiDimensionalLSTM(rnn_lib.RNNCell):
99 class NestedRNNCell(rnn_lib.RNNCell):
561 # the parameters from different RNNCell instances. Right now,
    [all...]
  /external/tensorflow/tensorflow/contrib/seq2seq/python/ops/
attention_wrapper.py     [all...]
  /external/tensorflow/tensorflow/python/debug/lib/
session_debug_testlib.py 67 class _RNNCellForTest(rnn_cell_impl.RNNCell):
    [all...]

Completed in 821 milliseconds