LeakyRelu - 6 vs 16#

Next section compares an older to a newer version of the same operator after both definition are converted into markdown text. Green means an addition to the newer version, red means a deletion. Anything else is unchanged.

Files changed (1) hide show
  1. LeakyRelu6 → LeakyRelu16 +0 -4
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.
7
4
  **Attributes**
8
5
  * **alpha**:
9
6
  Coefficient of leakage.
10
7
  **Inputs**
11
8
  * **X** (heterogeneous) - **T**:
12
9
  Input tensor
13
10
  **Outputs**
14
11
  * **Y** (heterogeneous) - **T**:
15
12
  Output tensor
16
13
  **Type Constraints**
17
14
  * **T** in (
18
- tensor(bfloat16),
19
15
  tensor(double),
20
16
  tensor(float),
21
17
  tensor(float16)
22
18
  ):
23
19
  Constrain input and output types to float tensors.