Caching and Optimization
Understanding Caching to Increase Query Performance in Deep Lake
How to Extract Maximum Performance from Your Vector Search
Tuning the Index Parameters
vectorstore = VectorStore(path,
index_params = {"threshold": <DEFAULT_-1>, # Index turned off by default
"distance_metric":<DEFAULT_COS>,
"additional_params": {
"efConstruction": <DEFAULT_200>,
"M": <DEFAULT_16>}})Caching of Embeddings and Index
Caching of Other Tensors
Was this helpful?