Class LRN
Represents an LRN local response normalization layer. This normalizes the input tensor over local input regions.
Inherited Members
Namespace: Unity.Sentis.Layers
Assembly: solution.dll
Syntax
[Serializable]
public class LRN : Layer
Constructors
| Name | Description |
|---|---|
| LRN(string, string, float, float, float, int) | Initializes and returns an instance of |
Fields
| Name | Description |
|---|---|
| alpha | The scaling parameter to use for the normalization. |
| beta | The exponent to use for the normalization. |
| bias | The bias value to use for the normalization. |
| count | The number of channels to sum over. |
Methods
| Name | Description |
|---|---|
| Execute(Tensor[], ExecutionContext) | Executes the layer using the operations and variables from the If the layer has more than one output, output tensors are saved to variables. |
| ToString() | Returns a string that represents the |