dd7c34ea3480f2ffd8843171676aaa22b1777bd8,nilearn/decomposition/tests/test_canica.py,,test_canica_square_img,#,8

Before Change


        map = np.abs(maps[i]) > np.abs(maps[i]).max() * 0.95
        for j in indices:
            ref_map = components[j].ravel() != 0
            if np.all(map.ravel() == ref_map):
                indices.remove(j)
                break
        else:

After Change


    // FIXME: This could be done more efficiently, e.g. thanks to hungarian
    // Find pairs of matching components
    // compute the cross-correlation matrix between components
    K = np.corrcoef(components, maps.reshape(4, 400))[4:, :4]
    // K should be a permutation matrix, hence its coefficients 
    // should all be close to 0 1 or -1
    K_abs = np.abs(K)
    assert_true(np.sum(K_abs > .9) == 4)
    K_abs[K_abs > .9] -= 1
    assert_array_almost_equal(K_abs, 0, 1)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: nilearn/nilearn
Commit Name: dd7c34ea3480f2ffd8843171676aaa22b1777bd8
Time: 2014-05-28
Author: bertrand.thirion@inria.fr
File Name: nilearn/decomposition/tests/test_canica.py
Class Name:
Method Name: test_canica_square_img


Project Name: nilearn/nilearn
Commit Name: 7b0c84ac43d81f2c0d980645e693df8452ce1cb5
Time: 2012-06-22
Author: alexandre.abraham@cea.fr
File Name: nyu_rest_decomposition.py
Class Name:
Method Name:


Project Name: matplotlib/matplotlib
Commit Name: df4e62300edda78b05782aee6eb036f3d7f32457
Time: 2017-12-01
Author: anntzer.lee@gmail.com
File Name: lib/matplotlib/contour.py
Class Name: ContourLabeler
Method Name: locate_label