torch.nn.init.NormalOptions
export interface NormalOptions {
/** The mean of the normal distribution (default: 0.0) */
mean?: number;
/** The standard deviation of the normal distribution (default: 1.0) */
std?: number;
}mean(number)optional- – The mean of the normal distribution (default: 0.0)
std(number)optional- – The standard deviation of the normal distribution (default: 1.0)
Options for normal_ initialization