I try to execute StudentT() but receive error . Error is
"ImportError: ('DLL load failed: The specified procedure could not be found.', '[Elemwise{log1p,no_inplace}()]')"
If I use Normal(), there is no issue.
from pymc3 import StudentT
with pm.Model() as model:
pm.glm.glm('Returns ~ AAP+CTXS+CAH+LLL', data,
family=glm.families.StudentT())
start = pm.find_MAP()
step = pm.NUTS(scaling=start)
trace = pm.sample(2000, step, start=start)