Created
April 2, 2019 20:48
-
-
Save curiousily/599513d26d90f1036e47c27f3066014d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sklearn.metrics import mean_squared_error | |
from math import sqrt | |
def rmse(h, y): | |
return sqrt(mean_squared_error(h, y)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment