If we consider the following linear regression example for PyMC3:
http://docs.pymc.io/notebooks/getting_started.html#A-Motivating-Example:-Linear-Regression
How would we include a constraint such as a + b1 + b2 = 1 or a^2 + b1^2 = 25
?
I understand that we can use Bound to create bounds for variables, but I wasn't sure how to add a more complex constraint.
Thanks for the help!