Skip to content

Update xgboost_regressor.py #9058

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions machine_learning/xgboost_regressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def xgboost(
... 907. , 2.45799458, 40.58 , -124.26]]),np.array([1.114]),
... np.array([[1.97840000e+00, 3.70000000e+01, 4.98858447e+00, 1.03881279e+00,
... 1.14300000e+03, 2.60958904e+00, 3.67800000e+01, -1.19780000e+02]]))
array([[1.1139996]], dtype=float32)
array([[1.114]], dtype=float32)
"""
xgb = XGBRegressor(verbosity=0, random_state=42)
xgb.fit(features, target)
Expand All @@ -38,8 +38,8 @@ def xgboost(
def main() -> None:
"""
>>> main()
Mean Absolute Error : 0.30957163379906033
Mean Square Error : 0.22611560196662744
Mean Absolute Error : 0.3089678116585885
Mean Square Error : 0.21783275170643127

The URL for this algorithm
https://xgboost.readthedocs.io/en/stable/
Expand Down