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 fe73d51 commit a80b650Copy full SHA for a80b650
pymc/smc/smc.py
@@ -189,7 +189,7 @@ def _initialize_kernel(self):
189
190
"""
191
# Create dictionary that stores original variables shape and size
192
- initial_point = self.model.initial_point
+ initial_point = self.model.recompute_initial_point(seed=self.rng.integers(2 ** 30))
193
for v in self.variables:
194
self.var_info[v.name] = (initial_point[v.name].shape, initial_point[v.name].size)
195
0 commit comments