发布PyMC3中的studentT问题

时间:2016-08-24 03:28:23

标签: theano pymc3

我尝试执行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)

0 个答案:

没有答案