rmse

getml.pipeline.scores.rmse = 'rmse'

Root Mean Squared Error - measure of distance between two numerical targets.

Used for regression problems.

RMSE = \sqrt{\frac{\sum_{i=1}^n ( \mathbf{y}_i - \mathbf{\hat{y}}_i )^2}{n}},

where \mathbf{y}_i and \mathbf{\hat{y}}_i are the target values or prediction respectively for a particular data sample i (both multidimensional in case of using multiple targets) while n is the number of samples we consider during the scoring.