e25ce99878d2b5c151ed8fde92276fbb2cb338b2,deslib/des/knop.py,KNOP,select,#KNOP#,137

Before Change


        // If all weights is equals to zero, it means that no classifier was selected. Hence, use all of them with equal
        // weights.
        if np.sum(weights) == 0:
            weights = np.ones(self.n_classifiers, dtype=int)

        votes = np.array([], dtype=int)
        for clf_idx, clf in enumerate(self.pool_classifiers):
            votes = np.hstack(
                (votes, np.ones(weights[clf_idx], dtype=int) * clf.predict(query)[0]))

        return votes

    def classify_instance(self, query, predictions):

After Change


        indices = (competence > 0)

        // For the rows that are all False (i.e., no base classifier was selected, select all classifiers (set all True)
        indices[~np.any(indices, axis=1), :] = True
        //
        // output_profile_query = self._output_profile_transform(query)
        // weights = self.estimate_competence(output_profile_query.reshape(1, -1))
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 8

Instances


Project Name: scikit-learn-contrib/DESlib
Commit Name: e25ce99878d2b5c151ed8fde92276fbb2cb338b2
Time: 2018-03-28
Author: rafaelmenelau@gmail.com
File Name: deslib/des/knop.py
Class Name: KNOP
Method Name: select


Project Name: geomstats/geomstats
Commit Name: 315990901cdcdca241013ee5e6c581391bae2523
Time: 2020-12-15
Author: yann.thanwerdas@gmail.com
File Name: geomstats/geometry/spd_matrices.py
Class Name: SPDMetricBuresWasserstein
Method Name: exp


Project Name: scikit-learn-contrib/DESlib
Commit Name: e25ce99878d2b5c151ed8fde92276fbb2cb338b2
Time: 2018-03-28
Author: rafaelmenelau@gmail.com
File Name: deslib/des/knora_u.py
Class Name: KNORAU
Method Name: select