jmzzomg commited on
Commit
834549f
1 Parent(s): cfff50d

Add a note about modifier.idf

Browse files

> Note:
This model is supposed to be used with Qdrant. Vectors have to be configured with [Modifier.IDF](https://qdrant.tech/documentation/concepts/indexing/?q=modifier#idf-modifier).

Files changed (1) hide show
  1. README.md +6 -0
README.md CHANGED
@@ -10,6 +10,9 @@ Repository with files to perform BM25 searches with [FastEmbed](https://github.c
10
 
11
  ### Usage
12
 
 
 
 
13
  Here's an example of BM25 with [FastEmbed](https://github.com/qdrant/fastembed).
14
 
15
  ```py
@@ -34,5 +37,8 @@ embeddings = list(model.embed(documents))
34
  # 1117393019
35
  # ]))
36
  # ]
 
 
 
37
 
38
  ```
 
10
 
11
  ### Usage
12
 
13
+ > Note:
14
+ This model is supposed to be used with Qdrant. Vectors have to be configured with [Modifier.IDF](https://qdrant.tech/documentation/concepts/indexing/?q=modifier#idf-modifier).
15
+
16
  Here's an example of BM25 with [FastEmbed](https://github.com/qdrant/fastembed).
17
 
18
  ```py
 
37
  # 1117393019
38
  # ]))
39
  # ]
40
+ ```
41
+
42
+
43
 
44
  ```