File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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" ,
You can’t perform that action at this time.
0 commit comments