Skip to content

Commit a0c7450

Browse files
committed
default argument update, typo fixed in minmax
1 parent 6ba0a80 commit a0c7450

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

mambular/preprocessing/preprocessor.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class Preprocessor:
7070
knots_strategy : str, default="uniform"
7171
Defines the strategy for determining knot positions in spline transformations
7272
if `use_decision_tree_knots` is False. Options include 'uniform', 'quantile'.
73-
spline_implementation : str, default="scipy"
73+
spline_implementation : str, default="sklearn"
7474
The library to use for spline implementation. Options include 'scipy' and 'sklearn'.
7575
7676
Attributes
@@ -96,7 +96,7 @@ def __init__(
9696
n_knots=64,
9797
use_decision_tree_knots=True,
9898
knots_strategy="uniform",
99-
spline_implementation="scipy",
99+
spline_implementation="sklearn",
100100
):
101101
self.n_bins = n_bins
102102
self.numerical_preprocessing = (
@@ -110,7 +110,7 @@ def __init__(
110110
"binning",
111111
"one-hot",
112112
"standardization",
113-
"min-max",
113+
"minmax",
114114
"quantile",
115115
"polynomial",
116116
"robust",

0 commit comments

Comments
 (0)