PyStan: RuntimeError: Initialization Failed

With some sleep I figured it out. in the comments of my program I define

int<lower=1000> K[N]; // initial trials
int<lower=10000> y[N]; // initial successes

but when I declare my data, I swapped K and y: y > K.
Simple user error :)

1 Like