Method Mean
Mean(TensorFloat[], TensorFloat)
Performs an element-wise Mean
math operation: f(x1, x2 ... xn) = (x1 + x2 ... xn) / n.
This supports numpy-style broadcasting of input tensors.
Declaration
public override void Mean(TensorFloat[] inputs, TensorFloat O)
Parameters
Type | Name | Description |
---|---|---|
TensorFloat[] | inputs | The input tensors. |
TensorFloat | O | The output tensor to be computed and filled. |