We are working on custom index implementation and it will become Pulsejet’s de-facto index implementation.
Index Types
FlatL2- Flat Index with L2 distance calculation- It is exact search with L2 (Euclidean Distance).
FlatIP- Flat Index with Cosine Similarity (Inner Product) distance- It is exact search with Inner Product
HNSW- Hierarchical Navigable Small WorldsIVFFlat- Inverted File Index - FlatIVFScalar- Inverted File Index - ScalarIVFPQ- Inverted File Index - Product QuantizedOPQPQ- Optimized PQ chained with Flat Product Quantization
How to select my index type?
Below you can find how to select which index and their general starting requirements.- FlatL2
- FlatIP
- HNSW
- IVFFlat
- IVFScalar
- IVFPQ
- OPQPQ
First, you can use ☝️ Welcome to the content that you can only see inside the first Tab.
FlatL2 index at collection creation with:
