Skip to content

Commit a5d8112

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 86219ce commit a5d8112

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

machine_learning/catboost_regressor.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ def catboost(
2727
array([1.1139996])
2828
"""
2929
# Create and fit the CatBoost Regressor
30-
catboost_model = CatBoostRegressor(
31-
verbose=0, random_seed=42, loss_function="RMSE"
32-
)
30+
catboost_model = CatBoostRegressor(verbose=0, random_seed=42, loss_function="RMSE")
3331
catboost_model.fit(features, target)
3432
# Predict target for test data
3533
predictions = catboost_model.predict(test_features)

0 commit comments

Comments
 (0)