File tree 1 file changed +0
-3
lines changed
hpsklearn/components/linear_model
1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ def sklearn_TheilSenRegressor(*args, **kwargs):
19
19
def theil_sen_regressor (
20
20
name : str ,
21
21
fit_intercept : bool = True ,
22
- copy_X : bool = True ,
23
22
max_subpopulation : typing .Union [int , Apply ] = None ,
24
23
n_subsamples : int = None ,
25
24
max_iter : typing .Union [int , Apply ] = None ,
@@ -34,7 +33,6 @@ def theil_sen_regressor(
34
33
Args:
35
34
name: name | str
36
35
fit_intercept: whether to calculate the intercept | bool
37
- copy_X: whether to copy X | bool
38
36
max_subpopulation: consider stochastic subpopulation | int
39
37
n_subsamples: number of samples to calculate parameters | int
40
38
max_iter: maximum number of iterations | int
@@ -49,7 +47,6 @@ def _name(msg):
49
47
50
48
hp_space = dict (
51
49
fit_intercept = fit_intercept ,
52
- copy_X = copy_X ,
53
50
max_subpopulation = scope .int (hp .uniform (_name ("max_subpopulation" ), 7500 , 12500 ))
54
51
if max_subpopulation is None else max_subpopulation ,
55
52
n_subsamples = n_subsamples ,
You can’t perform that action at this time.
0 commit comments