Home
last modified time | relevance | path

Searched defs:GRUCell (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/contrib/rnn/kernels/
Dgru_ops.h30 struct GRUCell { struct
31 GRUCell(const int batch_size, const int input_size, const int cell_size) in GRUCell() function
36 inline Eigen::array<Eigen::DenseIndex, 2> x_offsets() const { return {0, 0}; } in x_offsets()
38 inline Eigen::array<Eigen::DenseIndex, 2> x_extends() const { in x_extends()
42 inline Eigen::array<Eigen::DenseIndex, 2> h_offsets() const { in h_offsets()
69 struct GRUBlockCellFprop : public GRUCell { argument
/external/tensorflow/tensorflow/python/ops/
Drnn_cell_impl.py481 class GRUCell(LayerRNNCell): class
/external/tensorflow/tensorflow/python/keras/layers/
Drecurrent.py1515 class GRUCell(DropoutRNNCellMixin, Layer): class