3ec8c6a88407166ae0f4f8fa5427be74509eac75,tfdeploy.py,TensorEnsemble,func_min,#,715

Before Change



    @staticmethod
    def func_min(values):
        return reduce(lambda a, b: np.min(a, b, axis=-1), values)

    @staticmethod
    def func_custom(values):
        raise NotImplementedError

After Change



    @staticmethod
    def func_min(values):
        return np.amin(np.stack(values), axis=0)

    @staticmethod
    def func_custom(values):
        raise NotImplementedError
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 6

Instances


Project Name: riga/tfdeploy
Commit Name: 3ec8c6a88407166ae0f4f8fa5427be74509eac75
Time: 2016-06-28
Author: marcelrieger@me.com
File Name: tfdeploy.py
Class Name: TensorEnsemble
Method Name: func_min


Project Name: riga/tfdeploy
Commit Name: 3ec8c6a88407166ae0f4f8fa5427be74509eac75
Time: 2016-06-28
Author: marcelrieger@me.com
File Name: tfdeploy.py
Class Name: TensorEnsemble
Method Name: func_max


Project Name: riga/tfdeploy
Commit Name: 3ec8c6a88407166ae0f4f8fa5427be74509eac75
Time: 2016-06-28
Author: marcelrieger@me.com
File Name: tfdeploy.py
Class Name: TensorEnsemble
Method Name: func_mean