c2e94baae46c7b97cdd666b6d4a6fa3c6bdd8e9f,testing/test_hmc.py,CheckTrainingVariableState,test_last_update,#CheckTrainingVariableState#,148
Before Change
def test_last_update(self):
with self.test_context():
self.m.compile()
hmc = gpflow.train.HMC()
samples = hmc.sample(self.m, num_samples=10, lmin=1, lmax=10, epsilon=0.05, thin=10)
self.check_last_variables_state(self.m, samples)
def test_with_fixed(self):
with self.test_context():
After Change
kern=gpflow.kernels.Matern32(1),
likelihood=gpflow.likelihoods.StudentT())
def test_last_update(self):
with self.test_context():
m = self.model()
hmc = gpflow.train.HMC()
samples = hmc.sample(m, num_samples=10, lmin=1, lmax=10, epsilon=0.05, thin=10)
self.check_last_variables_state(m, samples)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 6
Instances
Project Name: GPflow/GPflow
Commit Name: c2e94baae46c7b97cdd666b6d4a6fa3c6bdd8e9f
Time: 2017-11-05
Author: art.art.v@gmail.com
File Name: testing/test_hmc.py
Class Name: CheckTrainingVariableState
Method Name: test_last_update
Project Name: GPflow/GPflow
Commit Name: c2e94baae46c7b97cdd666b6d4a6fa3c6bdd8e9f
Time: 2017-11-05
Author: art.art.v@gmail.com
File Name: testing/test_hmc.py
Class Name: CheckTrainingVariableState
Method Name: test_multiple_runs
Project Name: GPflow/GPflow
Commit Name: c2e94baae46c7b97cdd666b6d4a6fa3c6bdd8e9f
Time: 2017-11-05
Author: art.art.v@gmail.com
File Name: testing/test_hmc.py
Class Name: CheckTrainingVariableState
Method Name: test_last_update
Project Name: GPflow/GPflow
Commit Name: c2e94baae46c7b97cdd666b6d4a6fa3c6bdd8e9f
Time: 2017-11-05
Author: art.art.v@gmail.com
File Name: testing/test_hmc.py
Class Name: CheckTrainingVariableState
Method Name: test_with_fixed