96f3404a574faa97b1895753fed7a602f853baa7,tests/keras/layers/test_recurrent.py,,_runner,#Any#,11
Before Change
// check that output stays the same when state is reset
layer.reset_states()
out3 = K.eval(layer.get_output(train))
assert_allclose(out1, out3, atol=1e-5)
class TestRNNS(unittest.TestCase):
After Change
// check that output changes after states are reset
// (even though the model itself didn"t change)
layer.reset_states()
out3 = model.predict(np.ones((nb_samples, timesteps, input_dim)))
assert(out2.max() != out3.max())
class TestRNNS(unittest.TestCase):
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances Project Name: keras-team/keras
Commit Name: 96f3404a574faa97b1895753fed7a602f853baa7
Time: 2015-12-08
Author: francois.chollet@gmail.com
File Name: tests/keras/layers/test_recurrent.py
Class Name:
Method Name: _runner
Project Name: maxpumperla/elephas
Commit Name: f65d8825bd960dfd2f97fb225771e8612c9b13d8
Time: 2021-01-17
Author: danielenricocahall@gmail.com
File Name: tests/integration/test_prediction.py
Class Name:
Method Name: test_classification_prediction
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