Shortcuts

Source code for ignite.metrics.root_mean_squared_error

from __future__ import division
import math

from ignite.metrics.mean_squared_error import MeanSquaredError


[docs]class RootMeanSquaredError(MeanSquaredError): """ Calculates the root mean squared error. - `update` must receive output of the form (y_pred, y) or `{'y_pred': y_pred, 'y': y}`. """ def compute(self): mse = super(RootMeanSquaredError, self).compute() return math.sqrt(mse)

© Copyright 2024, PyTorch-Ignite Contributors. Last updated on 04/17/2024, 8:17:28 PM.

Built with Sphinx using a theme provided by Read the Docs.