1a2462f18707e04f294224053473668820111cf5,PyPi/approximators/regressor.py,Regressor,predict,#Regressor#Any#,54

Before Change


        // Returns
            The prediction of the model.
        
        if x.ndim == 1:
            x = np.expand_dims(x, axis=0)
        elif x.ndim > 2:
            raise ValueError("Training set dimension not suitable for the "
                             "regressor.")

        if self.features:
            x = self.features.transform(x)

        if self.input_scaled:

After Change


        // Returns
            The prediction of the model.
        
        if self.fit_action:
            assert isinstance(x, list) and len(x) == 2
            assert x[0].ndim == 2 and x[1].ndim == 2
            assert x[0].shape[0] == x[1].shape[0]

            x = np.concatenate((x[0], x[1]), axis=1)

        if isinstance(x, list):
            if self.features:
                x[0] = self.features.transform(x[0])
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 8

Instances


Project Name: AIRLab-POLIMI/mushroom
Commit Name: 1a2462f18707e04f294224053473668820111cf5
Time: 2017-07-23
Author: carlo.deramo@gmail.com
File Name: PyPi/approximators/regressor.py
Class Name: Regressor
Method Name: predict


Project Name: brian-team/brian2
Commit Name: 3daa1acdb68e7c305f23aa2eee308ceb8a440996
Time: 2017-03-17
Author: marcel.stimberg@inserm.fr
File Name: brian2/units/fundamentalunits.py
Class Name: Unit
Method Name: __init__


Project Name: AIRLab-POLIMI/mushroom
Commit Name: 1a2462f18707e04f294224053473668820111cf5
Time: 2017-07-23
Author: carlo.deramo@gmail.com
File Name: PyPi/approximators/regressor.py
Class Name: Regressor
Method Name: fit