Skip to content

Commit 953cb7f

Browse files
zaxtaxricardoV94
authored andcommitted
Remove use of treedict, addresses #291
1 parent 6c078e8 commit 953cb7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc_experimental/model/marginal_model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class MarginalModel(Model):
8484
def __init__(self, *args, **kwargs):
8585
super().__init__(*args, **kwargs)
8686
self.marginalized_rvs = []
87-
self._marginalized_named_vars_to_dims = treedict()
87+
self._marginalized_named_vars_to_dims = {}
8888

8989
def _delete_rv_mappings(self, rv: TensorVariable) -> None:
9090
"""Remove all model mappings referring to rv

0 commit comments

Comments
 (0)