Skip to content

Commit db8bb20

Browse files
committed
Remove unused Model.independent_vars
1 parent 0dd68ea commit db8bb20

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

pymc/model.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1027,17 +1027,6 @@ def unobserved_RVs(self):
10271027
"""
10281028
return self.free_RVs + self.deterministics
10291029

1030-
@property
1031-
def independent_vars(self):
1032-
"""List of all variables that are non-stochastic inputs to the model.
1033-
1034-
These are the actual random variable terms that make up the
1035-
"sample-space" graph (i.e. you can sample these graphs by compiling them
1036-
with `aesara.function`). If you want the corresponding log-likelihood terms,
1037-
use `var.tag.value_var`.
1038-
"""
1039-
return inputvars(self.unobserved_RVs)
1040-
10411030
@property
10421031
def disc_vars(self):
10431032
"""All the discrete variables in the model"""

0 commit comments

Comments
 (0)