Ejemplo: calcular el error cuadrático medio de la raíz python
def rmse(predictions, targets):
return np.sqrt(((predictions - targets) ** 2).mean())
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)
def rmse(predictions, targets):
return np.sqrt(((predictions - targets) ** 2).mean())