File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ def main() -> None:
40
40
41
41
"""
42
42
>>> main()
43
- Mean Absolute Error : 0.30957163379906033
44
- Mean Square Error : 0.22611560196662744
43
+ Mean Absolute Error : 0.30957163379906033
44
+ Mean Square Error : 0.22611560196662744
45
45
46
46
47
47
The Url for the algorithm
@@ -59,8 +59,8 @@ def main() -> None:
59
59
predictions = xgboost (x_train , y_train , x_test )
60
60
61
61
# Error printing
62
- print (f"Mean Absolute Error :\t { mean_absolute_error (y_test , predictions )} " )
63
- print (f"Mean Square Error :\t { mean_squared_error (y_test , predictions )} " )
62
+ print (f"Mean Absolute Error : { mean_absolute_error (y_test , predictions )} " )
63
+ print (f"Mean Square Error : { mean_squared_error (y_test , predictions )} " )
64
64
65
65
66
66
if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments