slupart's picture
Create README.md
24f7125 verified
# 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.