我尝试执行StudentT()但收到错误。错误是
" ImportError :(' DLL加载失败:找不到指定的过程。',' [Elemwise {log1p,no_inplace}()]') "
如果我使用Normal(),则没有问题。提前谢谢
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)