-
Notifications
You must be signed in to change notification settings - Fork 14
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
ValueError: Expected 2D array, got 1D array instead #8
Comments
did you fix it? |
Got the same error |
I got the same error. Any fix? |
ValueError: Expected 2D array, got 1D array instead: Same error on src/topicgpt/Clustering.py#line=91) Any fix @ArikReuter ? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ValueError: Expected 2D array, got 1D array instead:
array=[nan nan nan nan nan nan nan nan nan nan].
Reshape your data either using array.reshape(-1, 1) if your data has a single feature or array.reshape(1, -1) if it contains a single sample.
The text was updated successfully, but these errors were encountered: