PlsWork
PlsWork

Reputation: 2168

Monitor progress of scikit's DBSCAN

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

Answers (1)

PV8
PV8

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

Related Questions