Constructor RandomNormal
RandomNormal(string, int[], float, float, float?)
Initializes and returns an instance of RandomNormal random layer.
Declaration
public RandomNormal(string name, int[] shape, float mean, float scale, float? seed)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | The name to use for the output tensor of the layer. |
| int[] | shape | The shape for the output tensor as an array of ints. |
| float | mean | The mean of the normal distribution used to generate the output. |
| float | scale | The standard deviation of the normal distribution used to generate the output. |
| float? | seed | The optional seed to use for the random number generation. If this is |