-
Notifications
You must be signed in to change notification settings - Fork 328
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] #130
Comments
Hi Jogisuda, Thanks for your interest in using PySINDy! This issue has been reported elsewhere in Issues #124 #125 #129 and it stems from a small incompatibility between PySINDy and the new scikit-learn version 1.0. We have patched this issue on the development branch and will update the main branch in a few weeks. For now, you can see the other Issues for straightforwardly downgrading your scikit-learn version. Best, |
Thank you! |
Still experiencing this (just for other users to know). |
Still experiencing this now too |
@znicolaou and @Jacob-Stevens-Haas did we not patch this in the latest release? |
I thought it was patched before I came into the picture - I haven't worked on it. Maybe it's because I made the last release a 2.0.0-rc, so pip defaults to the last stable version. I made a 1.x branch before merging my big PR, so that should have the relevant change. I can do a release from that branch and that should update the "stable" version pip sees. edit: Done, v1.7.1 should be on pypi now |
Thanks for taking a look, @akaptano & @Jacob-Stevens-Haas! I'm out of town till next week. I can take a look at some things again soon after I get back. |
Hi! |
Rework tutorials, fix git hash logging bug
Hi! I was trying to get started with PySindy in Colab, running the following simple tutorial code:
However, I get the following Error message:
AttributeError Traceback (most recent call last)
in ()
1 model = ps.SINDy(feature_names=["x", "y"])
----> 2 model.fit(X, t=t)
6 frames
/usr/local/lib/python3.7/dist-packages/pysindy/feature_library/polynomial_library.py in fit(self, x, y)
170 )
171 print(n_features)
--> 172 self.n_input_features_ = n_features
173 self.n_output_features_ = sum(1 for _ in combinations)
174 return self
AttributeError: can't set attribute
PySINDy/Python version information:
1.4.3 3.7.12 (default, Sep 10 2021, 00:21:48)
[GCC 7.5.0]
The text was updated successfully, but these errors were encountered: