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

  /external/tensorflow/tensorflow/python/ops/
rnn_cell.py 45 from tensorflow.python.ops.rnn_cell_impl import *
rnn.py 39 from tensorflow.python.ops import rnn_cell_impl
47 _concat = rnn_cell_impl._concat
48 _like_rnncell = rnn_cell_impl._like_rnncell
    [all...]
  /external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/
core_rnn_cell_test.py 38 from tensorflow.python.ops import rnn_cell_impl
76 cell = rnn_cell_impl.BasicRNNCell(2)
79 "root/basic_rnn_cell/%s:0" % rnn_cell_impl._WEIGHTS_VARIABLE_NAME,
80 "root/basic_rnn_cell/%s:0" % rnn_cell_impl._BIAS_VARIABLE_NAME
103 cell = rnn_cell_impl.BasicRNNCell(2)
107 "root/basic_rnn_cell/%s:0" % rnn_cell_impl._WEIGHTS_VARIABLE_NAME,
108 "root/basic_rnn_cell/%s:0" % rnn_cell_impl._BIAS_VARIABLE_NAME
123 g, _ = rnn_cell_impl.GRUCell(2)(x, m)
136 g, _ = rnn_cell_impl.GRUCell(2)(x, m)
183 cell = rnn_cell_impl.MultiRNNCell
    [all...]
rnn_cell_test.py 40 from tensorflow.python.ops import rnn_cell_impl
    [all...]
  /external/tensorflow/tensorflow/contrib/seq2seq/python/ops/
basic_decoder.py 29 from tensorflow.python.ops import rnn_cell_impl
62 if not rnn_cell_impl._like_rnncell(cell): # pylint: disable=protected-access
attention_wrapper.py 41 from tensorflow.python.ops import rnn_cell_impl
61 _zero_state_tensors = rnn_cell_impl._zero_state_tensors # pylint: disable=protected-access
    [all...]
beam_search_decoder.py 36 from tensorflow.python.ops import rnn_cell_impl
198 if not rnn_cell_impl._like_rnncell(cell): # pylint: disable=protected-access
  /external/tensorflow/tensorflow/contrib/rnn/python/ops/
core_rnn_cell.py 35 from tensorflow.python.ops import rnn_cell_impl
42 RNNCell = rnn_cell_impl.RNNCell
43 _like_rnncell = rnn_cell_impl._like_rnncell
44 _WEIGHTS_VARIABLE_NAME = rnn_cell_impl._WEIGHTS_VARIABLE_NAME
45 _BIAS_VARIABLE_NAME = rnn_cell_impl._BIAS_VARIABLE_NAME
rnn_cell.py 39 from tensorflow.python.ops import rnn_cell_impl
93 class CoupledInputForgetGateLSTMCell(rnn_cell_impl.RNNCell):
198 rnn_cell_impl.LSTMStateTuple(num_units, num_proj)
203 rnn_cell_impl.LSTMStateTuple(num_units, num_units)
313 rnn_cell_impl.LSTMStateTuple(c, m)
318 class TimeFreqLSTMCell(rnn_cell_impl.RNNCell):
492 class GridLSTMCell(rnn_cell_impl.RNNCell):
    [all...]
gru_ops.py 28 from tensorflow.python.ops import rnn_cell_impl
35 LayerRNNCell = rnn_cell_impl.LayerRNNCell # pylint: disable=invalid-name
lstm_ops.py 31 from tensorflow.python.ops import rnn_cell_impl
37 LayerRNNCell = rnn_cell_impl.LayerRNNCell # pylint: disable=invalid-name
339 Unlike `rnn_cell_impl.LSTMCell`, this is a monolithic op and should be much
387 return rnn_cell_impl.LSTMStateTuple(self._num_units, self._num_units)
436 new_state = rnn_cell_impl.LSTMStateTuple(cs, h)
570 final_state = rnn_cell_impl.LSTMStateTuple(final_cell_state, final_output)
591 The variable naming is consistent with `rnn_cell_impl.LSTMCell`.
  /external/tensorflow/tensorflow/python/kernel_tests/
rnn_test.py 41 from tensorflow.python.ops import rnn_cell_impl
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/cudnn_rnn/python/ops/
cudnn_rnn_ops.py 32 from tensorflow.python.ops import rnn_cell_impl
59 _BIAS_VARIABLE_NAME = rnn_cell_impl._BIAS_VARIABLE_NAME
60 _WEIGHTS_VARIABLE_NAME = rnn_cell_impl._WEIGHTS_VARIABLE_NAME
79 class CudnnCompatibleGRUCell(rnn_cell_impl.GRUCell):
669 rnn_cell_impl.BasicRNNCell.__name__)
    [all...]
  /external/tensorflow/tensorflow/contrib/legacy_seq2seq/python/ops/
seq2seq.py 74 from tensorflow.python.ops import rnn_cell_impl
    [all...]
  /external/tensorflow/tensorflow/contrib/cudnn_rnn/python/kernel_tests/
cudnn_rnn_test.py 46 from tensorflow.python.ops import rnn_cell_impl
241 single_cell = (lambda: rnn_cell_impl.BasicRNNCell(num_units, math_ops.tanh))
244 lambda: rnn_cell_impl.BasicRNNCell(num_units, gen_nn_ops.relu))
249 cell = rnn_cell_impl.MultiRNNCell(
    [all...]
  /external/tensorflow/tensorflow/python/debug/lib/
session_debug_testlib.py 49 from tensorflow.python.ops import rnn_cell_impl
67 class _RNNCellForTest(rnn_cell_impl.RNNCell):
    [all...]

Completed in 1614 milliseconds