You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Conducting multi-region scans on single-region watermarked images can be quite slow, which is understandable because separation is not possible.
However, some images seem to cause the DBSCAN algorithm to get stuck indefinitely. like this
Since I can't understand why the DBSCAN algorithm is getting stuck, I vaguely noticed that high-resolution images seem not to have this issue. Perhaps I should adjust the epsilon and min_samples parameters based on the image size like this scikit-learn/scikit-learn#17650 ?
watermark-anything/notebooks/inference_utils.py
Line 150 in 45d56c2
Conducting multi-region scans on single-region watermarked images can be quite slow, which is understandable because separation is not possible.
However, some images seem to cause the DBSCAN algorithm to get stuck indefinitely. like this
Since I can't understand why the DBSCAN algorithm is getting stuck, I vaguely noticed that high-resolution images seem not to have this issue. Perhaps I should adjust the
epsilonandmin_samplesparameters based on the image size like this scikit-learn/scikit-learn#17650 ?