In pymc3 how does one configure a truncated normal prior? In pymc2 it's pretty straightforward (below), but in pymc3 it seems there is no longer a truncated normal distribution available.
Pymc2:
TruncatedNormal('gamma_own_%i_' % i, mu=go, tau=v_gamma_inv, value=0, a=-np.inf, b=0)
Pymc3: ?
pm.TruncatedNormal('n', mu=0, tau=10, lower=0, upper=1)
in PyMC3 now. – Johnsiejohnson