LeakyRelu - 6 vs 16

Files changed (1) hide show
  1. LeakyRelu6 → LeakyRelu16 +4 -0
LeakyRelu6 → LeakyRelu16 RENAMED
@@ -1 +1 @@
1
1
  LeakyRelu takes input data (Tensor<T>) and an argument alpha, and produces one
2
2
  output data (Tensor<T>) where the function f(x) = alpha * x for x < 0,
3
3
  f(x) = x for x >= 0, is applied to the data tensor elementwise.
4
+
5
+ **History**
6
+ - Version 16 adds bfloat16 to the types allowed.
4
7
  **Attributes**
5
8
  * **alpha**:
6
9
  Coefficient of leakage.
7
10
  **Inputs**
8
11
  * **X** (heterogeneous) - **T**:
9
12
  Input tensor
10
13
  **Outputs**
11
14
  * **Y** (heterogeneous) - **T**:
12
15
  Output tensor
13
16
  **Type Constraints**
14
17
  * **T** in (
18
+ tensor(bfloat16),
15
19
  tensor(double),
16
20
  tensor(float),
17
21
  tensor(float16)
18
22
  ):
19
23
  Constrain input and output types to float tensors.