What is a “cell class” in Keras?

后端 未结 1 1111
忘掉有多难
忘掉有多难 2020-12-31 09:01

Or, more specific: what is the difference between ConvLSTM2D and ConvLSTM2DCell?

What is the difference between SimpleRNN and SimpleRNNCel

相关标签:
1条回答
  • 2020-12-31 09:43

    The difference is the same for every cell layer combo:

    • Cell: The cell is the actual computation component, they take a single input, a past state and produce an output, new states. These actually perform the step function which contain the computation of a GRU cell for example.
    • RNN Layer: These layers wrap the corresponding cells to apply the same cell to multiple timesteps. So the cell is iterated over the input sequence and collect the output(s) based on extra options such as return_sequences.
    0 讨论(0)
提交回复
热议问题