Skip to content

Instantly share code, notes, and snippets.

@risenW
Created July 10, 2019 11:55
Show Gist options
  • Save risenW/ec9f2a7866b97ae17c25c814810e4a79 to your computer and use it in GitHub Desktop.
Save risenW/ec9f2a7866b97ae17c25c814810e4a79 to your computer and use it in GitHub Desktop.
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