You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That PR adds special_priors, which are a collection of objects that closely resembles the Prior class but with some differences. Right now, special priors don't inherit from the Prior class. But they should: they are required to have many of the same methods and inheritance is a good way to enforce that.
To get to inheritance, we'd need to refactor the Prior class over in the pymc-extras repo so there is a shared base class with abstract methods. Then we'd want to rewrite special priors to inherit from that base class.