Mean - 8 vs 13#
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.
- Mean8 → Mean13 +0 -1
Mean8 → Mean13
RENAMED
@@ -1 +1 @@
|
|
1
1
|
Element-wise mean of each of the input tensors (with Numpy-style broadcasting support).
|
2
2
|
All inputs and outputs must have the same data type.
|
3
3
|
This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check Broadcasting in ONNX <https://github.com/onnx/onnx/blob/master/docs/Broadcasting.md>_.
|
4
4
|
**Inputs**
|
5
5
|
Between 1 and 2147483647 inputs.
|
6
6
|
* **data_0** (variadic, heterogeneous) - **T**:
|
7
7
|
List of tensors for mean.
|
8
8
|
**Outputs**
|
9
9
|
* **mean** (heterogeneous) - **T**:
|
10
10
|
Output tensor.
|
11
11
|
**Type Constraints**
|
12
12
|
* **T** in (
|
13
|
-
tensor(bfloat16),
|
14
13
|
tensor(double),
|
15
14
|
tensor(float),
|
16
15
|
tensor(float16)
|
17
16
|
):
|
18
17
|
Constrain input and output types to float tensors.
|