forked from erikbern/ann-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plot_script.sh
executable file
·164 lines (122 loc) · 8.31 KB
/
plot_script.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#!/bin/bash
METRICS="recall total_time elapsed"
### BIG SHERPA ###
DATASET=siemens-big-sherpa
OPTIONS="--smooth 100 --landscape --font 20"
# ALL
echo "bruteforce dciknn flann hnswlib pydci sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce dciknn flann hnswlib pydci sptag $OPTIONS --build_lim -0.001 6 --search_lim 0 25 --total_lim -0.001 25
# DCI ONLY
echo "bruteforce dciknn pydci"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce dciknn pydci $OPTIONS --build_lim -0.001 6 --search_lim 0 25 --total_lim -0.001 25
# NON-DCI ONLY
echo "bruteforce flann hnswlib sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce flann hnswlib sptag $OPTIONS --build_lim -0.01 0.2 --search_lim -0.001 0.02 --total_lim -0.01 0.2
# HNSW
echo "bruteforce hnswlib"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce hnswlib $OPTIONS --build_lim -0.00005 0.02 --search_lim -0.0005 0.007 --total_lim -0.00005 0.02
# SMOOTH FLANN
echo "bruteforce flann"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce flann $OPTIONS --build_lim -0.0005 0.01 --search_lim -0.0005 0.007 --total_lim -0.0005 0.011
# # NONSMOOTH FLANN
# echo "bruteforce flann"
# python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce flann $OPTIONS --build_lim -0.0005 0.5 --search_lim -0.0005 0.007 --total_lim -0.0005 0.5
# DCIKNN
echo "bruteforce dciknn"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce dciknn $OPTIONS --build_lim -0.00005 0.02 --search_lim -0.0005 0.007 --total_lim -0.00005 0.02
# PYDCI
echo "bruteforce sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce pydci $OPTIONS --build_lim -0.00005 0.02 --search_lim -0.0005 0.007 --total_lim -0.00005 0.02
# SPTAG
echo "bruteforce sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce sptag $OPTIONS --build_lim -0.00005 0.02 --search_lim -0.0005 0.007 --total_lim -0.00005 0.02
# SHERPA ###
DATASET=siemens-sherpa
OPTIONS="--smooth 10 --landscape --font 20"
# ALL
echo "bruteforce dciknn flann hnswlib pydci sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce dciknn flann hnswlib pydci sptag $OPTIONS --build_lim -0.01 1 --search_lim 0 5 --total_lim -0.01 5
# DCI ONLY
echo "bruteforce dciknn pydci"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce dciknn pydci $OPTIONS --build_lim -0.001 6 --search_lim 0 25 --total_lim -0.001 25
# NON-DCI ONLY
echo "bruteforce flann hnswlib sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce flann hnswlib sptag $OPTIONS --build_lim -0.01 0.2 --search_lim -0.001 0.02 --total_lim -0.01 0.2
# HNSW
echo "bruteforce hnswlib"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce hnswlib $OPTIONS --build_lim -0.0005 0.015 --search_lim -0.00005 0.002 --total_lim -0.0005 0.015
# SMOOTH FLANN
echo "bruteforce flann"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce flann $OPTIONS --build_lim -0.0005 0.004 --search_lim -0.00005 0.002 --total_lim -0.0005 0.004
# # NONSMOOTH FLANN
# echo "bruteforce flann"
# python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce flann $OPTIONS --build_lim -0.0005 0.5 --search_lim -0.0005 0.007 --total_lim -0.0005 0.5
# DCIKNN
echo "bruteforce dciknn"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce dciknn $OPTIONS --build_lim -0.00005 0.3 --search_lim -0.00005 0.01 --total_lim -0.00005 0.3
# PYDCI
echo "bruteforce sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce pydci $OPTIONS --build_lim -0.00005 0.004 --search_lim -0.00005 3 --total_lim -0.00005 3 --ratio_lim 0 5
# SPTAG
echo "bruteforce sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce sptag $OPTIONS --build_lim -0.00005 0.2 --search_lim -0.00005 0.005 --total_lim -0.00005 0.2
# OLHC ###
DATASET=siemens-olhc
OPTIONS="--smooth 10 --landscape --font 20"
# ALL
echo "bruteforce dciknn flann hnswlib pydci sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce dciknn flann hnswlib pydci sptag $OPTIONS --build_lim -0.01 1 --search_lim 0 5 --total_lim -0.01 5
# DCI ONLY
echo "bruteforce dciknn pydci"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce dciknn pydci $OPTIONS --build_lim -0.001 6 --search_lim 0 25 --total_lim -0.001 25
# NON-DCI ONLY
echo "bruteforce flann hnswlib sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce flann hnswlib sptag $OPTIONS --build_lim -0.01 0.2 --search_lim -0.001 0.02 --total_lim -0.01 0.2
# HNSW
echo "bruteforce hnswlib"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce hnswlib $OPTIONS --build_lim -0.0005 0.015 --search_lim -0.00005 0.002 --total_lim -0.0005 0.015
# SMOOTH FLANN
echo "bruteforce flann"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce flann $OPTIONS --build_lim -0.0005 0.004 --search_lim -0.00005 0.002 --total_lim -0.0005 0.004
# # NONSMOOTH FLANN
# echo "bruteforce flann"
# python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce flann $OPTIONS --build_lim -0.0005 0.5 --search_lim -0.0005 0.007 --total_lim -0.0005 0.5
# DCIKNN
echo "bruteforce dciknn"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce dciknn $OPTIONS --build_lim -0.00005 0.3 --search_lim -0.00005 0.01 --total_lim -0.00005 0.3
# PYDCI
echo "bruteforce sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce pydci $OPTIONS --build_lim -0.00005 0.004 --search_lim -0.00005 3 --total_lim -0.00005 3 --ratio_lim 0 5
# SPTAG
echo "bruteforce sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce sptag $OPTIONS --build_lim -0.00005 0.2 --search_lim -0.00005 0.005 --total_lim -0.00005 0.2
### AS ###
DATASET=siemens-as
OPTIONS="--smooth 10 --landscape --font 20"
# ALL
echo "bruteforce dciknn flann hnswlib pydci sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce dciknn flann hnswlib pydci sptag $OPTIONS --build_lim -0.01 1 --search_lim 0 5 --total_lim -0.01 5
# DCI ONLY
echo "bruteforce dciknn pydci"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce dciknn pydci $OPTIONS --build_lim -0.001 6 --search_lim 0 25 --total_lim -0.001 25
# NON-DCI ONLY
echo "bruteforce flann hnswlib sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce flann hnswlib sptag $OPTIONS --build_lim -0.01 0.2 --search_lim -0.001 0.02 --total_lim -0.01 0.2
# HNSW
echo "bruteforce hnswlib"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce hnswlib $OPTIONS --build_lim -0.0005 0.015 --search_lim -0.00005 0.002 --total_lim -0.0005 0.015
# SMOOTH FLANN
echo "bruteforce flann"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce flann $OPTIONS --build_lim -0.0005 0.004 --search_lim -0.00005 0.002 --total_lim -0.0005 0.004
# # NONSMOOTH FLANN
# echo "bruteforce flann"
# python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce flann $OPTIONS --build_lim -0.0005 0.5 --search_lim -0.0005 0.007 --total_lim -0.0005 0.5
# DCIKNN
echo "bruteforce dciknn"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce dciknn $OPTIONS --build_lim -0.00005 0.3 --search_lim -0.00005 0.01 --total_lim -0.00005 0.3
# PYDCI
echo "bruteforce sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce pydci $OPTIONS --build_lim -0.00005 0.004 --search_lim -0.00005 3 --total_lim -0.00005 3 --ratio_lim 0 5
# SPTAG
echo "bruteforce sptag"
python plot_dynamic.py --dataset $DATASET --best_metric $METRICS --algorithms bruteforce sptag $OPTIONS --build_lim -0.00005 0.2 --search_lim -0.00005 0.005 --total_lim -0.00005 0.2