In the following line: https://github.com/jax-ml/bayeux/blob/ba33e55af9971088caa0ef7c58e6d393b59c351d/bayeux/_src/mcmc/nutpie.py#L100 We get the error: ``` TypeError: from_pyfunc() missing 1 required keyword-only argument: 'make_initial_point_fn' ``` Which does not have a default value here https://github.com/pymc-devs/nutpie/blob/5111e9bc0e1ab12c444f0bb47f7eee70c585fc7d/python/nutpie/compiled_pyfunc.py#L83 I'm going to double-check this issue with Adrian. I think it could be solved by making that argument equal to `None` by default.
In the following line:
bayeux/bayeux/_src/mcmc/nutpie.py
Line 100 in ba33e55
We get the error:
Which does not have a default value here
https://github.com/pymc-devs/nutpie/blob/5111e9bc0e1ab12c444f0bb47f7eee70c585fc7d/python/nutpie/compiled_pyfunc.py#L83
I'm going to double-check this issue with Adrian. I think it could be solved by making that argument equal to
Noneby default.