torch.LeakyReluFunctionalOptions
export interface LeakyReluFunctionalOptions {
/** Controls the angle of the negative slope (default: 0.01) */
negative_slope?: number;
/** If true, modifies input in-place (default: false) */
inplace?: boolean;
}negative_slope(number)optional- – Controls the angle of the negative slope (default: 0.01)
inplace(boolean)optional- – If true, modifies input in-place (default: false)
Options for leaky_relu functional operation.