File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -46,9 +46,16 @@ poetry install
46
46
Run the benchmark:
47
47
48
48
``` bash
49
+ $ poetry shell
50
+ $ python run.py --help
51
+
49
52
Usage: run.py [OPTIONS]
50
53
51
- Example: python3 -m run --engines * -m-16-* --datasets glove-*
54
+ Examples:
55
+
56
+ python3 run.py --engines " qdrant-rps-m-*-ef-*" --datasets " dbpedia-openai-100K-1536-angular" # Qdrant RPS mode
57
+
58
+ python3 run.py --engines " *-m-*-ef-*" --datasets " glove-*" # All engines and their configs for glove datasets
52
59
53
60
Options:
54
61
--engines TEXT [default: * ]
Original file line number Diff line number Diff line change @@ -26,8 +26,11 @@ def run(
26
26
skip_configure : Optional [bool ] = False ,
27
27
):
28
28
"""
29
- Example:
30
- python3 run.py --engines "*-m-16-*" --engines "qdrant-*" --datasets "glove-*"
29
+ Examples:
30
+
31
+ python3 run.py --engines "qdrant-rps-m-*-ef-*" --datasets "dbpedia-openai-100K-1536-angular" # Qdrant RPS mode
32
+
33
+ python3 run.py --engines "*-m-*-ef-*" --datasets "glove-*" # All engines and their configs for glove datasets
31
34
"""
32
35
all_engines = read_engine_configs ()
33
36
all_datasets = read_dataset_config ()
You can’t perform that action at this time.
0 commit comments