We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent defe474 commit 6057b13Copy full SHA for 6057b13
machine_learning/decision_tree.py
@@ -136,6 +136,8 @@ def main():
136
print("Average error: " + str(avg_error))
137
print("Scoring mae: ") + str(scoring_functions.mae(test_cases,predictions))
138
print("Scoring rmse: ") + str(scoring_functions.rmse(test_cases,predictions))
139
+ print("Scoring rmsle: ") + str(scoring_functions.rmsle(test_cases,predictions))
140
+ print("Scoring mbd: ") + str(scoring_functions.mbd(test_cases,predictions))
141
142
143
0 commit comments