Luciano Dourado
Luciano Dourado
Fixing usage example: ``` Traceback (most recent call last): File "test.py", line 6, in stats = gbif_dl.io.download(data_generator, root="my_dataset", retries=1000000) AttributeError: module 'gbif_dl' has no attribute 'io' ```
I'm trying to replace the cpu index by a gpu one but can't seem to do it on a distributed context. Faiss version: faiss 1.8.0 pypi_0 pypi faiss-gpu 1.8.0 py3.12_h4c7d538_0_cuda12.1.1...
Context: I have a dataset with say 1.000 classes and I want to perform K-means with gpu over each class. E.g. (sketch): ``` Python class KMeansModule: def __init__(self, nb_classes, dimensionality=256,...