42d0ac6260a5dd15bf86e49aa1b30ca8fcadc6c2,secuml/core/classif/monitoring/interp/coeff.py,Coefficients,display,#Coefficients#Any#,51

Before Change


    def display(self, directory):
        self.final_computations()
        with open(path.join(directory, "model_coefficients.csv"), "w") as f:
            self.coef_summary.to_csv(f, index_label="feature")

After Change


        if self.class_labels is None:
            self.coefficients.display(directory)
        else:
            for _, coefficients in self.coefficients.items():
                coefficients.display(directory)

    def _init_class_coefficients(self, features_info, num_folds):
        if self.class_labels is None:
            self.coefficients = ClassCoefficients(features_info, None,
                                                  num_folds=num_folds)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: ANSSI-FR/SecuML
Commit Name: 42d0ac6260a5dd15bf86e49aa1b30ca8fcadc6c2
Time: 2019-05-17
Author: anael.beaugnon@ssi.gouv.fr
File Name: secuml/core/classif/monitoring/interp/coeff.py
Class Name: Coefficients
Method Name: display


Project Name: anhaidgroup/deepmatcher
Commit Name: 8e864165fad7395bcce5bcef5a9238a1d8f1540d
Time: 2018-04-22
Author: sidharthmsk@gmail.com
File Name: deepmatcher/data/dataset.py
Class Name:
Method Name: split


Project Name: NeuroTechX/moabb
Commit Name: 028274e8f52c54b10d632a61ee19a6e64f7a90e6
Time: 2018-02-14
Author: vjayaram@danube.is.localnet
File Name: examples/MotorImagery/two_class_motor_imagery.py
Class Name:
Method Name: