Hitung root mean square error python
def rmse(predictions, targets):
return np.sqrt(((predictions - targets) ** 2).mean())
Lonely Leopard
def rmse(predictions, targets):
return np.sqrt(((predictions - targets) ** 2).mean())