Hello,
I was trying to install BayesFlow from pip but it seems to be outdated regarding to the example notebooks.
For example, in the Two Moons notebook, one create a simulator like this
simulator = bayesflow.make_simulator([theta_prior, forward_model])
but running
bayesflow.__dir__()
output the following :
['__name__', '__doc__', '__package__', '__loader__', '__spec__', '__path__', '__file__', '__cached__', '__builtins__', 'logging', 'default_settings', 'exceptions', 'helper_functions', 'computational_utilities', 'losses', 'wrappers', 'helper_networks', 'coupling_networks', 'inference_networks', 'attention', 'summary_networks', 'networks', 'amortizers', 'diagnostics', 'configuration', 'helper_classes', 'simulation', 'trainers', 'sensitivity']
So no make_simulator
function and it doesn’t look like the git repo architecture.
Is pip installation outdated ? Should I always work from source ?
My python version is Python 3.11.11 and I tried with Python 3.12.3 as well.