8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deeaeef commit f6d0c74Copy full SHA for f6d0c74
sksurv/ensemble/boosting.py
@@ -467,7 +467,8 @@ def __init__(self, loss="coxph", learning_rate=0.1, n_estimators=100,
467
criterion='friedman_mse',
468
min_samples_split=2,
469
min_samples_leaf=1, min_weight_fraction_leaf=0.,
470
- max_depth=3, min_impurity_split=1e-7, random_state=None,
+ max_depth=3, min_impurity_split=None,
471
+ min_impurity_decrease=0., random_state=None,
472
max_features=None, max_leaf_nodes=None,
473
subsample=1.0, dropout_rate=0.0,
474
verbose=0):
@@ -481,6 +482,7 @@ def __init__(self, loss="coxph", learning_rate=0.1, n_estimators=100,
481
482
min_weight_fraction_leaf=min_weight_fraction_leaf,
483
max_depth=max_depth,
484
min_impurity_split=min_impurity_split,
485
+ min_impurity_decrease=min_impurity_decrease,
486
init=ZeroSurvivalEstimator(),
487
random_state=random_state,
488
max_features=max_features,
0 commit comments