dynamicslab / pysindy

A package for the sparse identification of nonlinear dynamical systems from data
https://pysindy.readthedocs.io/en/latest/
Other
1.36k stars 304 forks source link

Bayesian Sindy #496

Closed ashok1996annu closed 2 months ago

ashok1996annu commented 2 months ago

I want to implement Bayesian Sindy to my problem. But I got the following error " pysindy.optimizers has no attribute SBR". I have tried so many times but failed. Can anyone tell the solution for this?

Jacob-Stevens-Haas commented 2 months ago

When you install pysindy, you (a) need to install from master branch - there's no PYPI release right now that has Bayesian SINDy, and (b) need the sbr optional dependencies.:

pip install pysindy[sbr] @ git+https://github.com/dynamicslab/pysindy
ashok1996annu commented 2 months ago

thanks for the help