Enum RnnDirection
Options for the direction of a recurrent layer.
Namespace: Unity.Sentis.Layers
Syntax
public enum RnnDirection
Fields
Name | Description | Value |
---|---|---|
Forward | Use only forward direction in the calculation. |
0 |
Reverse | Use only reverse direction in the calculation. |
1 |
Bidirectional | Use both forward and reverse directions in the calculation. |
2 |