torch.SoftplusFunctionalOptions
export interface SoftplusFunctionalOptions {
/** The beta value for the Softplus formulation (default: 1) */
beta?: number;
/** Values above this threshold will use linear approximation for numerical stability (default: 20) */
threshold?: number;
}beta(number)optional- – The beta value for the Softplus formulation (default: 1)
threshold(number)optional- – Values above this threshold will use linear approximation for numerical stability (default: 20)
Options for softplus functional operation.