Constructor RandomNormalLike
RandomNormalLike(string, string, float, float, float?)
Initializes and returns an instance of RandomNormalLike random layer.
Declaration
public RandomNormalLike(string name, string input, float mean, float scale, float? seed)Parameters
| Type | Name | Description | 
|---|---|---|
| string | name | The name to use for the output tensor of the layer. | 
| string | input | The name to use for the input tensor of the layer. The layer does not use the values of this tensor in the computation. | 
| 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  |