I've noticed that when using uniform distributions in pymc3, the sampler also scans over an _interval
parameter as well unless a transform is specified for example:
with fitModel6:
normMu = pm.Uniform('normMu',lower=0,upper=1000)
will result in not only sampling over normMu, but also, normMu_interval:
Normally, when I am using an uniform prior for scale parameter like a normalization, I will of course sample over the log interval. Is pymc3 handling this for me somehow?
Cheers