tf.nn.rnn_cell.OutputProjectionWrapper.__init__()

tf.nn.rnn_cell.OutputProjectionWrapper.__init__(cell, output_size)

Create a cell with output projection.

Args:
  • cell: an RNNCell, a projection to output_size is added to it.
  • output_size: integer, the size of the output after projection.
Raises:
  • TypeError: if cell is not an RNNCell.
  • ValueError: if output_size is not positive.
doc_TensorFlow
2016-10-14 13:08:37
Comments
Leave a Comment

Please login to continue.