rmse
metrics.rmse(y_true, y_pred)
Compute the Root Mean Square Error (RMSE).
Parameters
Name | Type | Description | Default |
---|---|---|---|
y_true |
ndarray |
A 1D array of the true target values. | required |
y_pred |
ndarray |
A 1D array of the predicted target values. | required |
Returns
Type | Description |
---|---|
float |
The RMSE between the true and predicted target values. |