Skip to content

Commit 392f8e5

Browse files
Apply suggested fix to src/linearboost/linear_boost.py from Copilot Autofix
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
1 parent 5311911 commit 392f8e5

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

src/linearboost/linear_boost.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -581,21 +581,6 @@ def __init__(
581581
n_estimators=n_estimators,
582582
learning_rate=learning_rate,
583583
)
584-
self.algorithm = algorithm
585-
self.scaler = scaler
586-
self.class_weight = class_weight
587-
self.loss_function = loss_function
588-
self.kernel = kernel
589-
self.gamma = gamma
590-
self.degree = degree
591-
self.coef0 = coef0
592-
self.early_stopping = early_stopping
593-
self.validation_fraction = validation_fraction
594-
self.n_iter_no_change = n_iter_no_change
595-
self.tol = tol
596-
self.subsample = subsample
597-
self.shrinkage = shrinkage
598-
self.boosting_type = boosting_type
599584

600585
if SKLEARN_V1_6_OR_LATER:
601586

0 commit comments

Comments
 (0)