chainer.functions.squared_error¶
-
chainer.functions.
squared_error
(x0, x1)[source]¶ Squared error function.
This function computes the squared error between two variables:
(x0−x1)2where operation is done in elementwise manner. Note that the error is not scaled by 1/2:
- Parameters
x0 (
Variable
or N-dimensional array) – Input variable.x1 (
Variable
or N-dimensional array) – Input variable.
- Returns
A variable holding an array representing the squared error of two inputs.
- Return type