Skip to content

Commit 7852f1a

Browse files
committed
Few last formating changes.
1 parent a32901c commit 7852f1a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

pymc3/step_methods/ATMCMC.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import pymc3 as pm
99

1010
import os
11-
import copy
1211
import theano
1312

1413
from pymc3.theanof import make_shared_replacements, join_nonshared_inputs
@@ -29,7 +28,9 @@ class ATMCMC(pm.arraystep.ArrayStepShared):
2928
Journal of Engineering Mechanics 2007
3029
DOI:10.1016/(ASCE)0733-9399(2007)133:7(816)
3130
http://ascelibrary.org/doi/abs/10.1061/%28ASCE%290733-9399%282007%29133:7%28816%29
31+
3232
Creates initial samples and framework around the (C)ATMIP parameters
33+
3334
Parameters
3435
----------
3536
vars : list
@@ -211,9 +212,9 @@ def select_end_points(self, mtrace):
211212
for var, slc, shp, _ in self.ordering.vmap:
212213
if len(shp) == 0:
213214
array_population[:, slc] = np.atleast_2d(
214-
mtrace.get_values(varname=var,
215-
burn=n_steps - 1,
216-
combine=True)).T
215+
mtrace.get_values(varname=var,
216+
burn=n_steps - 1,
217+
combine=True)).T
217218
else:
218219
array_population[:, slc] = mtrace.get_values(
219220
varname=var,

0 commit comments

Comments
 (0)