Spaces:
Sleeping
Sleeping
| import faiss | |
| import numpy as np | |
| def create_faiss_index(embeddings): | |
| dim = embeddings.shape[1] | |
| index = faiss.IndexFlatL2(dim) | |
| index.add(np.array(embeddings)) | |
| return index | |
| import faiss | |
| import numpy as np | |
| def create_faiss_index(embeddings): | |
| dim = embeddings.shape[1] | |
| index = faiss.IndexFlatL2(dim) | |
| index.add(np.array(embeddings)) | |
| return index | |