chainer.functions.mean_absolute_error¶
-
chainer.functions.mean_absolute_error(x0, x1)[source]¶ Mean absolute error function.
This function computes mean absolute error between two variables. The mean is taken over the minibatch.
- Parameters
x0 (
Variableor N-dimensional array) – Input variable.x1 (
Variableor N-dimensional array) – Input variable.
- Returns
A variable holding an array representing the mean absolute error of two inputs.
- Return type