163eb7df13667e21b0e02a2706e18d1f53eee610,skrebate/iterrelief.py,IterRelief,fit,#IterRelief#Any#Any#,69

Before Change




        // Iterate till max iteration reached or all weights are really tiny
        while ((iteration < self.max_iter) & (any(w >= 0.0001 for w in distance_weights))):
            // Run Core Relief-based algorithm
            core_fit = core.fit(self.X_mat, self._y, distance_weights, self.weight_flag)

            // When all weights become 0, break
            if all(w == 0 for w in core_fit.feature_importances_):
                break

            // Update weights
            feature_weights = core_fit.feature_importances_
            
            mx = max(feature_weights)
            mn = min(feature_weights)
            rg = mx - mn

            weight_history.append(feature_weights)

            feature_weights = [(x - mn)/(rg) for x in feature_weights]
            distance_weights += feature_weights


After Change


            if iteration == 0:
                no_diff = False
            else:
                for i in range(len(feature_weights)):
                    //previous array of feature_weights
                    prev = weight_history[len(weight_history)-1]
                    diff = abs(prev[i] - feature_weights[i])
                    // first encounter of value that has difference greater than threshold, set no_diff to False, and break out of checking loop
                    if diff >= 0.0001:
                        no_diff = False
                        break;
            if no_diff:
                break;

            mx = max(feature_weights)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 13

Instances


Project Name: EpistasisLab/scikit-rebate
Commit Name: 163eb7df13667e21b0e02a2706e18d1f53eee610
Time: 2020-01-29
Author: alexmxu99@gmail.com
File Name: skrebate/iterrelief.py
Class Name: IterRelief
Method Name: fit


Project Name: matplotlib/matplotlib
Commit Name: 03427e5a5b4e6fc7f094860fc6cacee6b83399c7
Time: 2019-04-24
Author: thomas.robitaille@gmail.com
File Name: lib/matplotlib/sphinxext/plot_directive.py
Class Name:
Method Name: render_figures


Project Name: matplotlib/matplotlib
Commit Name: c7c215f47daebdbc62ea055a11777905e7c4be7f
Time: 2019-04-24
Author: dstansby@gmail.com
File Name: lib/matplotlib/sphinxext/plot_directive.py
Class Name:
Method Name: render_figures


Project Name: EpistasisLab/scikit-rebate
Commit Name: ece383696800b9b34854df27a65a3d1d74669952
Time: 2020-05-28
Author: alexmxu@alexs-mbp-3.attlocal.net
File Name: skrebate/iterrelief.py
Class Name: IterRelief
Method Name: fit


Project Name: EpistasisLab/scikit-rebate
Commit Name: 163eb7df13667e21b0e02a2706e18d1f53eee610
Time: 2020-01-29
Author: alexmxu99@gmail.com
File Name: skrebate/iterrelief.py
Class Name: IterRelief
Method Name: fit