Reputation: 2168
I have a large amount of data that I want to cluster with Scikit's DBSCAN. I do it with the following line:
dbscanObject = DBSCAN(eps=20, min_samples=15).fit(featureVectors)
Unfortunately, this takes very long depending on how large the dataset is, and I see no way to monitor the progress of DBSCAN. How can I monitor the algorithm's progress and estimate the time left for the algorithm to finish?
Upvotes: 7
Views: 1475
Reputation: 6270
This model of scikit still does not support a progress bar. Models which support it are https://scikit-learn.org/stable/modules/classes.html#module-sklearn.ensemble
Upvotes: 0