Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/rushter/MLAlgorithms
/ root_mean_squared_error
Function
root_mean_squared_error
mla/metrics/metrics.py:54–55 ·
view source on GitHub ↗
(actual, predicted)
Source
from the content-addressed store, hash-verified
52
53
54
def
root_mean_squared_error(actual, predicted):
55
return
np.sqrt(mean_squared_error(actual, predicted))
56
57
58
def
root_mean_squared_log_error(actual, predicted):
Callers
nothing calls this directly
Calls
1
mean_squared_error
Function · 0.85
Tested by
no test coverage detected