riddell-stan
riddell-stan
Fixing this would be wonderful. Glad it's on your radar. FYI: we renamed the repository. Here's an updated link: https://github.com/stan-dev/pystan/blob/1ffd41a5827c4d54c31205e350f0e698bcb2d87f/stan/fit.py#L93
Here's my version, expanding on @techtonik's a bit: ```bash docker run -it -v $(pwd):/io quay.io/pypa/manylinux1_x86_64 # following, roughly, https://github.com/pypa/python-manylinux-demo/blob/master/travis/build-wheels.sh PYBIN=/opt/python/cp36-cp36m/bin for whl in wheelhouse/*.whl; do auditwheel repair "$whl" -w /io/wheelhouse/...
Creating a wheelhouse directory in your working directory might do the trick. On 1/7/19 4:26 PM, Geoffrey Fairchild wrote: > I've followed the instructions so far: > > |docker pull...
httpstan is now on manylinux_2_28. Thanks for the heads up.
There's probably a fix for this. If you have access to a larger (ephemeral) disk, you can set your user cache directory so it uses this disk. I think the...
@mjcarter95 Any updates on ess? Would be great to get this in.
Wonderful! The first task is to make an endpoint in httpstan that allows users to call the Stan C++ function (ignore pystan for the moment). If you've had experience using...
This looks like a different issue. Warnings should not stop `sample` from succeeding. Can you create a new issue? You shouldn't be encountering problems on Debian 11.
For the issue proper, this is what CmdStanPy uses: ``` data { int J; // number of schools array[J] real y; // estimated treatment effect (school j) array[J] real sigma;...
Looks good to me. Let's fix the CI before merging though.