Skip to content

Commit

Permalink
also need to remove from the quantilegb model
Browse files Browse the repository at this point in the history
  • Loading branch information
basaks committed Jul 17, 2023
1 parent 5245fff commit e57ffdb
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions uncoverml/optimise/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ def __init__(self, target_transform='identity', loss='quantile',
subsample=1.0, criterion='friedman_mse', min_samples_split=2,
min_samples_leaf=1, min_weight_fraction_leaf=0.,
max_depth=3, min_impurity_decrease=0.,
min_impurity_split=None, init=None, random_state=None,
init=None, random_state=None,
max_features=None, verbose=0, max_leaf_nodes=None,
warm_start=False,
validation_fraction=0.1,
Expand All @@ -747,7 +747,6 @@ def __init__(self, target_transform='identity', loss='quantile',
self.subsample = subsample
self.max_features = max_features
self.min_impurity_decrease = min_impurity_decrease
self.min_impurity_split = min_impurity_split
self.random_state = random_state
self.alpha = alpha
self.verbose = verbose
Expand All @@ -766,7 +765,6 @@ def __init__(self, target_transform='identity', loss='quantile',
max_depth=max_depth, subsample=subsample,
max_features=max_features,
min_impurity_decrease=min_impurity_decrease,
min_impurity_split=min_impurity_split,
random_state=random_state, verbose=verbose,
max_leaf_nodes=max_leaf_nodes, warm_start=warm_start,
validation_fraction=validation_fraction,
Expand All @@ -781,7 +779,6 @@ def __init__(self, target_transform='identity', loss='quantile',
max_depth=max_depth, subsample=subsample,
max_features=max_features,
min_impurity_decrease=min_impurity_decrease,
min_impurity_split=min_impurity_split,
random_state=random_state, verbose=verbose,
max_leaf_nodes=max_leaf_nodes, warm_start=warm_start,
validation_fraction=validation_fraction,
Expand All @@ -796,7 +793,6 @@ def __init__(self, target_transform='identity', loss='quantile',
max_depth=max_depth, subsample=subsample,
max_features=max_features,
min_impurity_decrease=min_impurity_decrease,
min_impurity_split=min_impurity_split,
random_state=random_state, verbose=verbose,
max_leaf_nodes=max_leaf_nodes, warm_start=warm_start,
validation_fraction=validation_fraction,
Expand Down

0 comments on commit e57ffdb

Please sign in to comment.