b95fcf7f52aca8ad0b1afb3cfc64c8eed534fafe,tests/keras/backend/backend_test.py,TestBackend,test_gather,#TestBackend#,331
Before Change
def test_gather(self):
shape = (10, 2, 3)
ref = np.arange(np.prod(shape)).reshape(shape)
ref_th = KTH.variable(ref)
ref_tf = KTF.variable(ref)
inds = [1, 3, 7, 9]
inds_th = KTH.variable(inds, dtype="int32")
inds_tf = KTF.variable(inds, dtype="int32")
th_z = KTH.gather(ref_th, inds_th)
th_result = KTH.eval(th_z)
tf_result = KTF.eval(KTF.gather(ref_tf, inds_tf))
assert_allclose(tf_result, th_result, atol=1e-05)
After Change
z_list = [k.eval(k.gather(k.variable(ref), k.variable(inds, dtype="int32")))
for k in BACKENDS]
assert_list_pairwise(z_list)
assert_list_keras_shape(z_list)
// test theano shape inference when
// input shape has None entries
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
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_gather
Project Name: keras-team/keras
Commit Name: c714efa31658ef43eaddc7b9c4340cb915bf8211
Time: 2019-06-24
Author: francois.chollet@gmail.com
File Name: tests/keras/test_sequential_model.py
Class Name:
Method Name: test_sequential
Project Name: keras-team/keras
Commit Name: ae72ea0bfe7f7041d6f7580427fa1f69158bab7e
Time: 2018-03-05
Author: me@taehoonlee.com
File Name: tests/keras/backend/backend_test.py
Class Name: TestBackend
Method Name: test_rnn_no_states