PyMultiNest
PyMultiNest copied to clipboard
Pythonic Bayesian inference and visualization for the MultiNest Nested Sampling Algorithm and PyCuba's cubature algorithms.
I consistently get the following when attempting to execute PyMultiNest: `Traceback (most recent call last): File "/Users/[redacted]/Documents/Code/Internal/PMNexperimentMay2020.py", line 139, in pmn.run(Loglike, Prior, ndims,n_live_points=1000,n_params=n_params,outputfiles_basename='./'+ProjectName+'/temp_',resume=False,verbose=True) File "/Users/ajsmit16/Library/Python/3.8/lib/python/site-packages/pymultinest-2.9-py3.8.egg/pymultinest/run.py", line 254, in run File...
Hi, I was trying to install MultiNest following the instructions here https://johannesbuchner.github.io/PyMultiNest/install.html, but when running `$cmake ..` I got the following error ........ -- A library with BLAS API found....
Hello! PyMultinest is running fine on my Mac laptop. However, when I try enabling MPI, I'm getting some problems. Running the pymultinest_demo_minimal.py script results in the following: bash-3.2$ mpirun -np...
I recently found myself installing PyMultiNest as a dependency for another package and noticed in the error messages that the URL for the documentation pointed to johannesbuchner.github.com instead of johannesbuchner.github.io....
Would be more convenient if you used [scikit-build](https://github.com/scikit-build/scikit-build) for an easier install. The benefit is that the MultiNest library could just be built and contained within PyMultiNest package. I've used...
HI This is related to #113 and #173 I have a conda environment at NERSC with the cray mpich libraries and mpi4py available. I want to support users who may...
Hi, I tried to compile the MultiNest library following the instructions here: https://johannesbuchner.github.io/PyMultiNest/install.html However make fails with the error message: ```f951: Fatal Error: Reading module ‘xmeans_clstr’ at line 1826 column...
Function `solve()` returns more output. Then there is no need to re-read the file to run e.g., `Analyzer.get_data()`.
In line 136 of analyse.py should be something like bi = lambda x: numpy.interp(x*b[-1,0], b[:,0], b[:,1], left=b[0,1], right=b[-1,1]) instead of bi = lambda x: numpy.interp(x, b[:,0], b[:,1], left=b[0,1], right=b[-1,1])
I've been trying to get PyMultiNest working on my Mac all morning. I managed to successfully install PyMultiNest - first through pip and then, after the pip-installed version failed, manually...