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?