modeci_mdf.functions.onnx.leakyrelu

modeci_mdf.functions.onnx.leakyrelu(*args, **kwargs)

LeakyRelu takes input data (Tensor<T>) and an argument alpha, and produces one output data (Tensor<T>) where the function f(x) = alpha * x for x < 0, f(x) = x for x >= 0, is applied to the data tensor elementwise.