You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scikit learn has a system where keywords are prepended with the name of the function that they should be passed to.
We could probably implement this using the sections in the ini files. E.g. infer_pymc__nuts_sampler = "numpyro" would pass nuts_sampler = "numpyro" to infer_pymc, and the prefix could be added from the section via
[infer_pymc]nuts_sampler = True
The existing system works, but we need to manually pass parameters to the right locations after they are given to fixedbasisMCMC.
The text was updated successfully, but these errors were encountered:
Scikit learn has a system where keywords are prepended with the name of the function that they should be passed to.
We could probably implement this using the sections in the ini files. E.g.
infer_pymc__nuts_sampler = "numpyro"
would passnuts_sampler = "numpyro"
toinfer_pymc
, and the prefix could be added from the section viaThe existing system works, but we need to manually pass parameters to the right locations after they are given to
fixedbasisMCMC
.The text was updated successfully, but these errors were encountered: