We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2970d18 commit 19bf9bdCopy full SHA for 19bf9bd
pymc3/tests/test_step.py
@@ -163,8 +163,7 @@ def check_trace(self, step_method):
163
with Model():
164
x = Normal('x', mu=0, sd=1)
165
if step_method.__name__ == 'SMC':
166
- Deterministic('like', - 0.5 * tt.log(2 * np.pi) - 0.5 * x.T.dot(x))
167
- trace = smc.ATMIP_sample(n_steps=n_steps, step=step_method(random_seed=1),
+ trace = smc.sample_SMC(n_steps=n_steps, step=step_method(random_seed=1),
168
n_jobs=1, progressbar=False,
169
homepath=self.temp_dir)
170
else:
0 commit comments