Skip to content

Commit c3006b8

Browse files
committed
add preprocessor args to base classes
1 parent 1163a25 commit c3006b8

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

mambular/models/sklearn_base_classifier.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ def __init__(self, model, config, **kwargs):
2121
"task",
2222
"cat_cutoff",
2323
"treat_all_integers_as_numerical",
24+
"knots",
25+
"degree",
2426
]
2527

2628
self.config_kwargs = {

mambular/models/sklearn_base_lss.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ def __init__(self, model, config, **kwargs):
4343
"task",
4444
"cat_cutoff",
4545
"treat_all_integers_as_numerical",
46+
"knots",
47+
"degree",
4648
]
4749

4850
self.config_kwargs = {

mambular/models/sklearn_base_regressor.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ def __init__(self, model, config, **kwargs):
2020
"task",
2121
"cat_cutoff",
2222
"treat_all_integers_as_numerical",
23+
"knots",
24+
"degree",
2325
]
2426

2527
self.config_kwargs = {

0 commit comments

Comments
 (0)