b1268d78355c994594a3629539ef9de276909117,ludwig/features/numerical_feature.py,NumericalOutputFeature,__init__,#NumericalOutputFeature#Any#,145

Before Change



class NumericalOutputFeature(NumericalBaseFeature, OutputFeature):
    def __init__(self, feature):
        super().__init__(feature)

        self.loss = {"type": MEAN_SQUARED_ERROR}
        self.clip = None
        self.initializer = None

After Change



class NumericalOutputFeature(NumericalBaseFeature, OutputFeature):
    def __init__(self, feature):
        NumericalBaseFeature.__init__(self, feature)
        OutputFeature.__init__(self, feature)

        self.loss = {"type": MEAN_SQUARED_ERROR}
        self.clip = None
        self.initializer = None
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: uber/ludwig
Commit Name: b1268d78355c994594a3629539ef9de276909117
Time: 2020-03-18
Author: w4nderlust@gmail.com
File Name: ludwig/features/numerical_feature.py
Class Name: NumericalOutputFeature
Method Name: __init__


Project Name: uber/ludwig
Commit Name: 116e474be75cdcf4c1d53b1c6540097766671b18
Time: 2020-03-27
Author: jimthompson5802@aol.com
File Name: ludwig/features/numerical_feature.py
Class Name: NumericalOutputFeature
Method Name: __init__


Project Name: uber/ludwig
Commit Name: 116e474be75cdcf4c1d53b1c6540097766671b18
Time: 2020-03-27
Author: jimthompson5802@aol.com
File Name: ludwig/features/binary_feature.py
Class Name: BinaryOutputFeature
Method Name: __init__


Project Name: uber/ludwig
Commit Name: b1268d78355c994594a3629539ef9de276909117
Time: 2020-03-18
Author: w4nderlust@gmail.com
File Name: ludwig/features/numerical_feature.py
Class Name: NumericalOutputFeature
Method Name: __init__