MeanVarianceNormalization - 9 vs 13¶
MeanVarianceNormalization9 → MeanVarianceNormalization13
RENAMED
@@ -1 +1 @@
|
|
1
1
|
A MeanVarianceNormalization Function: Perform mean variance normalization
|
2
2
|
on the input tensor X using formula: <br/> (X-EX)/sqrt(E(X-EX)^2)
|
3
3
|
**Attributes**
|
4
4
|
* **axes**:
|
5
5
|
A list of integers, along which to reduce. The default is to
|
6
6
|
caculate along axes [0,2,3] for calculating mean and variance along
|
7
7
|
each channel. Two variables with the same C-coordinate are
|
8
8
|
associated with the same mean and variance.
|
9
9
|
**Inputs**
|
10
10
|
* **X** (heterogeneous) - **T**:
|
11
11
|
Input tensor
|
12
12
|
**Outputs**
|
13
13
|
* **Y** (heterogeneous) - **T**:
|
14
14
|
Output tensor
|
15
15
|
**Type Constraints**
|
16
16
|
* **T** in (
|
17
|
+
tensor(bfloat16),
|
17
18
|
tensor(double),
|
18
19
|
tensor(float),
|
19
20
|
tensor(float16)
|
20
21
|
):
|
21
22
|
Constrain input and output types to all numeric tensors.
|