get_rmse
get_rmse(y_true, y_pred, *, sample_weight=None)Compute Root Mean Squared Error (RMSE).
Parameters
| Name | Type | Description | Default |
|---|---|---|---|
| y_true | array-like of shape (n_samples,) | True target values. | required |
| y_pred | array-like of shape (n_samples,) | Predicted target values. | required |
| sample_weight | array-like of shape (n_samples,) | Sample weights. | None |
Returns
| Name | Type | Description |
|---|---|---|
| rmse | float | Root Mean Squared Error. |