Searched refs:rnn_cell_impl (Results 1 - 16 of 16) sorted by relevance

/external/tensorflow/tensorflow/python/ops/
H A Drnn_cell.py45 from tensorflow.python.ops.rnn_cell_impl import *
H A Drnn.py39 from tensorflow.python.ops import rnn_cell_impl namespace
47 _concat = rnn_cell_impl._concat
48 _like_rnncell = rnn_cell_impl._like_rnncell
/external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/
H A Dcore_rnn_cell_test.py38 from tensorflow.python.ops import rnn_cell_impl namespace
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
[all...]
H A Drnn_cell_test.py40 from tensorflow.python.ops import rnn_cell_impl namespace
1271 state0 = rnn_cell_impl.LSTMStateTuple(c0, h0)
1274 state1 = rnn_cell_impl.LSTMStateTuple(c1, h1)
1275 cell = rnn_cell_impl.MultiRNNCell([
/external/tensorflow/tensorflow/contrib/seq2seq/python/ops/
H A Dbasic_decoder.py29 from tensorflow.python.ops import rnn_cell_impl namespace
62 if not rnn_cell_impl._like_rnncell(cell): # pylint: disable=protected-access
H A Dattention_wrapper.py41 from tensorflow.python.ops import rnn_cell_impl namespace
61 _zero_state_tensors = rnn_cell_impl._zero_state_tensors # pylint: disable=protected-access
1072 class AttentionWrapper(rnn_cell_impl.RNNCell):
1155 if not rnn_cell_impl._like_rnncell(cell): # pylint: disable=protected-access
H A Dbeam_search_decoder.py36 from tensorflow.python.ops import rnn_cell_impl namespace
198 if not rnn_cell_impl._like_rnncell(cell): # pylint: disable=protected-access
/external/tensorflow/tensorflow/contrib/rnn/python/ops/
H A Drnn_cell.py39 from tensorflow.python.ops import rnn_cell_impl namespace
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):
1106 class AttentionCellWrapper(rnn_cell_impl.RNNCell):
1146 if not rnn_cell_impl._like_rnncell(cell): # pylint: disable=protected-access
1251 class HighwayWrapper(rnn_cell_impl
[all...]
H A Dcore_rnn_cell.py35 from tensorflow.python.ops import rnn_cell_impl namespace
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
H A Dgru_ops.py28 from tensorflow.python.ops import rnn_cell_impl namespace
35 LayerRNNCell = rnn_cell_impl.LayerRNNCell # pylint: disable=invalid-name
H A Dlstm_ops.py31 from tensorflow.python.ops import rnn_cell_impl namespace
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/
H A Drnn_test.py41 from tensorflow.python.ops import rnn_cell_impl namespace
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/
H A Dcudnn_rnn_ops.py32 from tensorflow.python.ops import rnn_cell_impl namespace
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__)
/external/tensorflow/tensorflow/contrib/legacy_seq2seq/python/ops/
H A Dseq2seq.py74 from tensorflow.python.ops import rnn_cell_impl namespace
977 if not isinstance(enc_cell, rnn_cell_impl.RNNCell):
982 if not isinstance(dec_cell, rnn_cell_impl.RNNCell):
/external/tensorflow/tensorflow/contrib/cudnn_rnn/python/kernel_tests/
H A Dcudnn_rnn_test.py46 from tensorflow.python.ops import rnn_cell_impl namespace
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(
/external/tensorflow/tensorflow/python/debug/lib/
H A Dsession_debug_testlib.py49 from tensorflow.python.ops import rnn_cell_impl namespace
67 class _RNNCellForTest(rnn_cell_impl.RNNCell):

Completed in 524 milliseconds