Skip to content
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

fit_predict only returns labels for newly added data, is that intended? #3

Open
alexandradec opened this issue Mar 8, 2021 · 0 comments

Comments

@alexandradec
Copy link

Hello. I can see in the code that fit_predict gets an X array of data, adds it to the micro clusters and then runs DBSCAN on them (the micro clusters). However, it then returns labels only for X but not for preexisting data.
A more concrete example of how I want to use the algorithm:
I have multiple days of data.
I run partial_fit using only the 1st day, and this creates some micro clusters.
Then I run partial_fit on the data of the 2nd day, and this updates the existing micro clusters.
etc
If on my final day I want to run fit_predic to get the final clustering result, I have to give all the points (of all the days) as X because the function only labels those points.
Is it how it is intended?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant