Created
July 10, 2019 11:55
-
-
Save risenW/ec9f2a7866b97ae17c25c814810e4a79 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
print("Linear Regression Model") | |
print(get_mae(pred1, y_val)) | |
print("KNN Regression Model") | |
print(get_mae(pred2, y_val)) | |
print("SVR Regression Model") | |
print(get_mae(pred3, y_val)) | |
print("Average Model") | |
print(get_mae(avgpred, y_val)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment