torch.nn.functional.LayerNormFunctionalOptions
export interface LayerNormFunctionalOptions {
/** Optional scale weight */
weight?: Tensor;
/** Optional bias */
bias?: Tensor;
/** Small constant for numerical stability (default: 1e-5) */
eps?: number;
}weight(Tensor)optional- – Optional scale weight
bias(Tensor)optional- – Optional bias
eps(number)optional- – Small constant for numerical stability (default: 1e-5)
Options for layer_norm functional operation.