We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Below is a minimal version of a test script for multi-gpu DBSCAN. I have 6 RTX 4090 on my machine that I want to utilize.
I observe memory allocations and de-allocations on my GPUs. But DBSCAN fails to return any result.
Any idea where the issue might be coming from?
import numpy as np from cuml.dask.cluster import DBSCAN from dask.distributed import Client from dask_cuda import LocalCUDACluster if __name__ == "__main__": cluster = LocalCUDACluster() client = Client(cluster) embs = np.random.randn(100_000, 256) dbscan = DBSCAN( client=client, eps=0.25, min_samples=5, metric="cosine", ).fit(embs)
Environment details:
The text was updated successfully, but these errors were encountered:
@vikcost can you explain what you mean by DBSCAN failing to return any result? Does that mean there is a crash or something else going on?
Sorry, something went wrong.
No branches or pull requests
Below is a minimal version of a test script for multi-gpu DBSCAN.
I have 6 RTX 4090 on my machine that I want to utilize.
I observe memory allocations and de-allocations on my GPUs. But DBSCAN fails to return any result.
Any idea where the issue might be coming from?
Environment details:
The text was updated successfully, but these errors were encountered: