torch.RreluFunctionalOptions
export interface RreluFunctionalOptions {
/** Lower bound of uniform distribution for slope (default: 1/8) */
lower?: number;
/** Upper bound of uniform distribution for slope (default: 1/3) */
upper?: number;
/** If true, sample slope from uniform(lower, upper); if false, use mean slope (default: false) */
training?: boolean;
/** If true, modifies input in-place (default: false) */
inplace?: boolean;
}lower(number)optional- – Lower bound of uniform distribution for slope (default: 1/8)
upper(number)optional- – Upper bound of uniform distribution for slope (default: 1/3)
training(boolean)optional- – If true, sample slope from uniform(lower, upper); if false, use mean slope (default: false)
inplace(boolean)optional- – If true, modifies input in-place (default: false)
Options for rrelu functional operation.