File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 88import pymc3 as pm
99
1010import os
11- import copy
1211import theano
1312
1413from 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 ,
You can’t perform that action at this time.
0 commit comments