Skip to content

XGB Regressor #7107

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

Merged
merged 20 commits into from
Oct 23, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Update and rename xgboostregressor.py to xgboost_regressor.py
  • Loading branch information
cclauss authored Oct 23, 2022
commit e37101edbe619f849aa2fbbf0e8eb9c0b8d9b716
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@


def data_handling(data: dict) -> tuple:
# Split dataset into features and target
# data is features
# Split dataset into features and target. Data is features.
"""
>>> data_handling((
... {'data':'[ 8.3252 41. 6.9841269 1.02380952 322. 2.55555556 37.88 -122.23 ]'
Expand Down Expand Up @@ -37,27 +36,22 @@ def xgboost(


def main() -> None:

"""
>>> main()
Mean Absolute Error : 0.30957163379906033
Mean Square Error : 0.22611560196662744


The Url for the algorithm
The URL for this algorithm
https://xgboost.readthedocs.io/en/stable/
California house price dataset is used to demonstrate the algorithm.
"""
# Load California house price dataset
california = fetch_california_housing()

data, target = data_handling(california)
x_train, x_test, y_train, y_test = train_test_split(
data, target, test_size=0.25, random_state=1
)

predictions = xgboost(x_train, y_train, x_test)

# Error printing
print(f"Mean Absolute Error : {mean_absolute_error(y_test, predictions)}")
print(f"Mean Square Error : {mean_squared_error(y_test, predictions)}")
Expand Down