slupart commited on
Commit
24f7125
·
verified ·
1 Parent(s): 3556699

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # FAISS Index
2
+
3
+ This repository contains a FAISS index split into multiple parts in the `index/` folder.
4
+
5
+ ## Reconstruct the index
6
+
7
+ ```bash
8
+ cat part_* > e5_Flat.index
9
+ ````
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ import faiss
15
+
16
+ index = faiss.read_index("e5_Flat.index")
17
+ ```
18
+
19
+ ## Notes
20
+
21
+ * All `part_*` files are required.
22
+ * Do not modify the part files before reconstruction.
23
+