PRelu - 1 vs 6

Files changed (1) hide show
  1. PRelu1 → PRelu6 +0 -5
PRelu1 → PRelu6 RENAMED
@@ -1 +1 @@
1
1
  PRelu takes input data (Tensor<T>) and slope tensor as input, and produces one
2
2
  output data (Tensor<T>) where the function f(x) = slope * x for x < 0,
3
3
  f(x) = x for x >= 0., is applied to the data tensor elementwise.
4
-
5
- **Attributes**
6
-
7
- * **consumed_inputs**:
8
- legacy optimization attribute.
9
4
  **Inputs**
10
5
  * **X** (heterogeneous) - **T**:
11
6
  Input tensor
12
7
  * **slope** (heterogeneous) - **T**:
13
8
  Slope tensor. If Slope is of size 1, the value is sharedacross
14
9
  different channels
15
10
  **Outputs**
16
11
  * **Y** (heterogeneous) - **T**:
17
12
  Output tensor
18
13
  **Type Constraints**
19
14
  * **T** in (
20
15
  tensor(double),
21
16
  tensor(float),
22
17
  tensor(float16)
23
18
  ):
24
19
  Constrain input and output types to float tensors.