0

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)
Cœur
  • 37,241
  • 25
  • 195
  • 267
  • Update your question instead of adding comment – ASR Aug 24 '16 at 04:22
  • Something went wrong with your Theano installation on your Windows machine. Read [here](http://stackoverflow.com/questions/34508431/installing-theano-on-windows-dll-load-failed) for more details. If you have not tried it yet, try using Anaconda Python Distribution and ensure you are installing PyMC3 together with the developmental version of Theano as indicated [here](https://pymc-devs.github.io/pymc3/#installation) – aloctavodia Aug 24 '16 at 09:43
  • @aloctavodia Thank you – Choong Koon Wai Aug 24 '16 at 13:53

0 Answers0