File size: 353 Bytes
24f7125 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # FAISS Index
This repository contains a FAISS index split into multiple parts in the `index/` folder.
## Reconstruct the index
```bash
cat part_* > e5_Flat.index
````
## Usage
```python
import faiss
index = faiss.read_index("e5_Flat.index")
```
## Notes
* All `part_*` files are required.
* Do not modify the part files before reconstruction.
|