-
-
Notifications
You must be signed in to change notification settings - Fork 49.4k
XGBoost Classifier #7106
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
XGBoost Classifier #7106
Changes from 1 commit
1bd7304
8990641
5feb35b
a927e97
aaaf398
06a9025
0decdf8
d795ac4
e16b32b
f797b34
bd88865
3cbd77b
06b6981
0519814
bc690dd
3b899b1
8c111ca
08cf249
c282905
776162d
93f1c64
49a6223
147bfd4
4451683
489822d
844b4be
79603f7
5751029
9e77f64
0ccc63f
f44646b
ccf61cd
9c0bbff
34d7dc3
6d13459
80d86c1
5f9cae8
22d8913
3f36987
a357282
ae11a52
8a42329
d9cded2
682943f
0de2c82
d04fd28
2c7f99c
1f3affb
307122f
7d42c2e
32a5206
32091d3
98dc009
6496c2c
c78ede9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,19 @@ | ||
| # XGBoost Classifier Example | ||
| from doctest import testmod | ||
|
|
||
| from matplotlib import pyplot as plt | ||
| from sklearn.datasets import load_iris | ||
| from sklearn.metrics import plot_confusion_matrix | ||
| from sklearn.model_selection import train_test_split | ||
| from xgboost import XGBClassifier | ||
|
|
||
|
|
||
| def data_handling(data) -> list: | ||
| def data_handling(data: list) -> tuple: | ||
Moddy2024 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
Moddy2024 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
Moddy2024 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| # Split dataset into train and test data | ||
| x = data["data"] # features | ||
| y = data["target"] | ||
| return x, y | ||
|
|
||
Moddy2024 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| def xgboost(features, target): | ||
| def xgboost(features: list, target: list): | ||
Moddy2024 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| classifier = XGBClassifier() | ||
| classifier.fit(features, target) | ||
| return classifier | ||
|
|
@@ -54,4 +52,4 @@ def main() -> None: | |
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| testmod(name="main", verbose=True) | ||
| main() | ||
Uh oh!
There was an error while loading. Please reload this page.