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

Before Change


        // Determine total number of features
        total_num_features = X.shape[1]

        print("num featuers")
        print(total_num_features)
        // Initialize weights
        distance_weights = np.ones(total_num_features)

After Change


                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
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

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: uTensor/uTensor
Commit Name: 8461dd4c3c1adcc28545b89fd317f3a67d569042
Time: 2017-09-29
Author: neil.c.tan@gmail.com
File Name: TESTS/scripts/GEN_SCR/quantizedMatMul/uint8uint8uint32.py
Class Name:
Method Name:


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