a770dbd27f41d90205bf69d2cd86991d6f887e90,dask_ml/model_selection/_incremental.py,BaseIncrementalSearchCV,fit,#BaseIncrementalSearchCV#Any#Any#,656

Before Change


            Additional partial fit keyword arguments for the estimator.
        

        if self.verbose:
            h = logging.StreamHandler(sys.stdout)
            context = LoggingContext(logger, level=logging.INFO, handler=h)
        else:
            context = dummy_context()

        with context:
            return default_client().sync(self._fit, X, y, **fit_params)

    @if_delegate_has_method(delegate=("best_estimator_", "estimator"))

After Change


        client = default_client()
        if not client.asynchronous:
            return client.sync(self._fit, X, y, **fit_params)
        return self._fit(X, y, **fit_params)

    @if_delegate_has_method(delegate=("best_estimator_", "estimator"))
    def decision_function(self, X):
        self._check_is_fitted("decision_function")
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 5

Instances


Project Name: dask/dask-ml
Commit Name: a770dbd27f41d90205bf69d2cd86991d6f887e90
Time: 2020-05-28
Author: stsievert@users.noreply.github.com
File Name: dask_ml/model_selection/_incremental.py
Class Name: BaseIncrementalSearchCV
Method Name: fit


Project Name: rasbt/mlxtend
Commit Name: 62fc64ead3faa5a783d2c7e0836ebaf06c1d7374
Time: 2016-06-26
Author: mail@sebastianraschka.com
File Name: mlxtend/feature_extraction/rbf_kernel_pca.py
Class Name: RBFKernelPCA
Method Name: fit


Project Name: AIRLab-POLIMI/mushroom
Commit Name: 957cf495d2aa856769d5807e06c743cd9eff96f2
Time: 2019-07-09
Author: carlo.deramo@gmail.com
File Name: mushroom/algorithms/value/dqn.py
Class Name: DQN
Method Name: fit


Project Name: tgsmith61591/pmdarima
Commit Name: 7b5306a5d69cbf68a15de0a2ad1f52327936d3e1
Time: 2019-03-26
Author: tgsmith61591@gmail.com
File Name: pmdarima/arima/arima.py
Class Name: ARIMA
Method Name: fit