Skip to content

Commit a357282

Browse files
authored
1 parent 3f36987 commit a357282

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

machine_learning/xgboostclassifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def data_handling(data: dict) -> tuple:
2020
return x
2121

2222

23-
def xgboost(features: np.ndarray, target: np.ndarray): -> XGBClassifier:
23+
def xgboost(features: np.ndarray, target: np.ndarray) -> XGBClassifier:
2424
"""
2525
>>> xgboost(np.array([[5.1, 3.5, 1.4, 0.2],[4.6, 3.4, 1.4, 0.3]]), np.array([1,2]))
2626
XGBClassifier()

0 commit comments

Comments
 (0)