Example #1
0
 def __init__(self,
              base_estimator=None,
              n_estimators=10,
              max_samples=1.0,
              max_features=1.0,
              bootstrap=True,
              bootstrap_features=False,
              oob_score=False,
              warm_start=False,
              n_jobs=1,
              random_state=None,
              verbose=0):
     n_estimators = int(n_estimators)
     _BaggingRegressor.__init__(self, base_estimator, n_estimators,
                                max_samples, max_features, bootstrap,
                                bootstrap_features, oob_score, warm_start,
                                n_jobs, random_state, verbose)
     BaseWrapperReg.__init__(self)