torch.nn.functional.RreluFunctionalOptions
export interface RreluFunctionalOptions {
/** Lower bound of uniform distribution (default: 1/8) */
lower?: number;
/** Upper bound of uniform distribution (default: 1/3) */
upper?: number;
/** If true, apply randomness (default: false) */
training?: boolean;
}lower(number)optional- – Lower bound of uniform distribution (default: 1/8)
upper(number)optional- – Upper bound of uniform distribution (default: 1/3)
training(boolean)optional- – If true, apply randomness (default: false)
Options for rrelu functional operation.