forked from BenchCouncil/BigVectorBench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plot.py
191 lines (171 loc) · 5.67 KB
/
plot.py
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
"""
Plotting script for BigVectorBench
"""
import argparse
import numpy as np
import matplotlib.pyplot as plt
import matplotlib as mpl
from bigvectorbench.datasets import get_dataset
from bigvectorbench.plotting.metrics import all_metrics as metrics
from bigvectorbench.plotting.utils import (
compute_metrics,
create_linestyles,
create_pointset,
get_plot_label,
)
from bigvectorbench.results import get_unique_algorithms, load_all_results
mpl.use("Agg")
def create_plot(all_data, raw, x_scale, y_scale, xn, yn, fn_out, linestyles, batch):
xm, ym = (metrics[xn], metrics[yn])
# Now generate each plot
handles = []
labels = []
plt.figure(figsize=(12, 9))
# Sorting by mean y-value helps aligning plots with labels
def mean_y(algo):
xs, ys, ls, axs, ays, als = create_pointset(all_data[algo], xn, yn)
return -np.log(np.array(ys)).mean()
# Find range for logit x-scale
min_x, max_x = 1, 0
for algo in sorted(all_data.keys(), key=mean_y):
xs, ys, ls, axs, ays, als = create_pointset(all_data[algo], xn, yn)
min_x = min([min_x] + [x for x in xs if x > 0])
max_x = max([max_x] + [x for x in xs if x < 1])
color, faded, linestyle, marker = linestyles[algo]
(handle,) = plt.plot(
xs, ys, "-", label=algo, color=color, ms=7, mew=3, lw=3, marker=marker
)
handles.append(handle)
if raw:
(handle2,) = plt.plot(
axs, ays, "-", label=algo, color=faded, ms=5, mew=2, lw=2, marker=marker
)
labels.append(algo)
ax = plt.gca()
ax.set_ylabel(ym["description"])
ax.set_xlabel(xm["description"])
# Custom scales of the type --x-scale a3
if x_scale[0] == "a":
alpha = float(x_scale[1:])
def fun(x):
return 1 - (1 - x) ** (1 / alpha)
def inv_fun(x):
return 1 - (1 - x) ** alpha
ax.set_xscale("function", functions=(fun, inv_fun))
if alpha <= 3:
ticks = [inv_fun(x) for x in np.arange(0, 1.2, 0.2)]
plt.xticks(ticks)
if alpha > 3:
from matplotlib import ticker
ax.xaxis.set_major_formatter(ticker.LogitFormatter())
# plt.xticks(ticker.LogitLocator().tick_values(min_x, max_x))
plt.xticks([0, 1 / 2, 1 - 1e-1, 1 - 1e-2, 1 - 1e-3, 1 - 1e-4, 1])
# Other x-scales
else:
ax.set_xscale(x_scale)
ax.set_yscale(y_scale)
ax.set_title(get_plot_label(xm, ym))
plt.gca().get_position()
# plt.gca().set_position([box.x0, box.y0, box.width * 0.8, box.height])
ax.legend(
handles, labels, loc="center left", bbox_to_anchor=(1, 0.5), prop={"size": 9}
)
plt.grid(visible=True, which="major", color="0.65", linestyle="-")
plt.setp(ax.get_xminorticklabels(), visible=True)
# Logit scale has to be a subset of (0,1)
if "lim" in xm and x_scale != "logit":
x0, x1 = xm["lim"]
plt.xlim(max(x0, 0), min(x1, 1))
elif x_scale == "logit":
plt.xlim(min_x, max_x)
if "lim" in ym:
plt.ylim(ym["lim"])
# Workaround for bug https://github.com/matplotlib/matplotlib/issues/6789
ax.spines["bottom"]._adjust_location()
plt.savefig(fn_out, bbox_inches="tight")
plt.close()
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--dataset", metavar="DATASET", default="glove-100-angular")
parser.add_argument("-k", "--count", default=10)
parser.add_argument(
"--definitions",
metavar="FILE",
help="load algorithm definitions from FILE",
default="algos.yaml",
)
parser.add_argument("--limit", default=-1)
parser.add_argument(
"-o",
"--output",
help="output file",
)
parser.add_argument(
"-x",
"--x-axis",
help="Which metric to use on the X-axis",
choices=metrics.keys(),
default="k-nn",
)
parser.add_argument(
"-y",
"--y-axis",
help="Which metric to use on the Y-axis",
choices=metrics.keys(),
default="qps",
)
parser.add_argument(
"-X",
"--x-scale",
help="Scale to use when drawing the X-axis. Typically linear, logit or a2",
default="linear",
)
parser.add_argument(
"-Y",
"--y-scale",
help="Scale to use when drawing the Y-axis",
choices=["linear", "log", "symlog", "logit"],
default="linear",
)
parser.add_argument(
"--raw",
help="Show raw results (not just Pareto frontier) in faded colors",
action="store_true",
)
parser.add_argument("--batch", help="Plot runs in batch mode", action="store_true")
parser.add_argument(
"--recompute",
help="Clears the cache and recomputes the metrics",
action="store_true",
)
args = parser.parse_args()
if not args.output:
args.output = "results/%s.png" % (
args.dataset + ("-batch" if args.batch else "")
)
print("writing output to %s" % args.output)
dataset, _ = get_dataset(args.dataset)
count = int(args.count)
unique_algorithms = get_unique_algorithms()
results = load_all_results(args.dataset, count, args.batch)
linestyles = create_linestyles(sorted(unique_algorithms))
runs = compute_metrics(
np.array(dataset["neighbors"]),
results,
args.x_axis,
args.y_axis,
args.recompute,
)
if not runs:
raise Exception("Nothing to plot")
create_plot(
runs,
args.raw,
args.x_scale,
args.y_scale,
args.x_axis,
args.y_axis,
args.output,
linestyles,
args.batch,
)