public class RNN extends RecurrentCell
Reference paper: Finding structure in time - Elman, 1988. https://crl.ucsd.edu/~elman/Papers/fsit.pdf
With ReLU activation function: \(h_t = relu(W_{ih} * x_t + b_{ih} + W_{hh} * h_{(t-1)} + b_{hh})\)
With Tanh activation function: \(h_t = \tanh(W_{ih} * x_t + b_{ih} + W_{hh} * h_{(t-1)} + b_{hh})\)
| Modifier and Type | Class and Description |
|---|---|
static class |
RNN.Activation
An enum that enumerates the type of activation.
|
static class |
RNN.Builder
|
RecurrentCell.BaseBuilder<T extends RecurrentCell.BaseBuilder>currentVersion, dropRate, gates, mode, numStackedLayers, parameters, stateOutputs, stateShape, stateSize, useBidirectional, useSequenceLengthinputNames, inputShapes| Modifier and Type | Method and Description |
|---|---|
static RNN.Builder |
builder()
Creates a builder to build a
RNN. |
beforeInitialize, forward, getDirectParameters, getOutputShapes, getParameterShape, loadParameters, opInputs, saveParameters, updateInputLayoutToTNC, validateInputSizegetChildren, initialize, toStringcast, clear, describeInput, getParameters, isInitialized, setInitializer, setInitializerclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitforward, validateLayoutpublic static RNN.Builder builder()
RNN.