b95fcf7f52aca8ad0b1afb3cfc64c8eed534fafe,tests/keras/backend/backend_test.py,TestBackend,test_nn_operations,#TestBackend#,783

Before Change


        // dropout
        val = np.random.random((100, 100))
        x_list = [k.variable(val) for k in BACKENDS]
        z_list = []
        for x, k in zip(x_list, BACKENDS):
            z_list.append(k.eval(k.dropout(x, level=0.2)))

        for i in range(len(z_list) - 1):
            assert z_list[i].shape == z_list[i + 1].shape
            // dropout patterns are different, only check mean
            assert np.abs(z_list[i].mean() - z_list[i + 1].mean()) < 0.05

        check_two_tensor_operation("binary_crossentropy", (4, 2), (4, 2), BACKENDS, from_logits=True)
        // cross_entropy call require the label is a valid probability distribution,
        // otherwise it is garbage in garbage out...
        // due to the algo difference, we can"t guarantee CNTK has the same result on the garbage input.

After Change


        // due to the algo difference, we can"t guarantee CNTK has the same result on the garbage input.
        // so create a seperate test case for valid lable input
        check_two_tensor_operation("categorical_crossentropy", (4, 2), (4, 2), [KTH, KTF], from_logits=True)
        xval = np.asarray([[0.26157712, 0.0432167], [-0.43380741, 0.30559841],
                           [0.20225059, -0.38956559], [-0.13805378, 0.08506755]], dtype=np.float32)
        yval = np.asarray([[0.46221867, 0.53778133], [0.51228984, 0.48771016],
                           [0.64916514, 0.35083486], [0.47028078, 0.52971922]], dtype=np.float32)
        check_two_tensor_operation("categorical_crossentropy", xval, yval,
                                   BACKENDS, cntk_two_dynamicity=True, from_logits=True)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: keras-team/keras
Commit Name: b95fcf7f52aca8ad0b1afb3cfc64c8eed534fafe
Time: 2017-07-29
Author: me@taehoonlee.com
File Name: tests/keras/backend/backend_test.py
Class Name: TestBackend
Method Name: test_nn_operations


Project Name: tflearn/tflearn
Commit Name: 45e0e9f57cd6aa0253ef45ecd9044dbdb329c8f0
Time: 2017-05-22
Author: aymeric.damien@gmail.com
File Name: examples/images/dcgan.py
Class Name:
Method Name:


Project Name: deeppomf/DeepCreamPy
Commit Name: a1e55d9cc2cc4efa7ef2f5245e866d8645d66c77
Time: 2019-06-17
Author: donald.carlsson@paranta.se
File Name: libs/utils.py
Class Name:
Method Name: