forked from erikbern/ann-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
data_export.py
38 lines (34 loc) · 1.26 KB
/
data_export.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
import argparse
import csv
from ann_benchmarks.datasets import DATASETS, get_dataset
from ann_benchmarks.plotting.utils import compute_metrics_all_runs
from ann_benchmarks.results import load_all_results
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument(
'--output',
help='Path to the output file',
required=True)
parser.add_argument(
'--recompute',
action='store_true',
help='Recompute metrics')
args = parser.parse_args()
datasets = DATASETS.keys()
dfs = []
for dataset_name in datasets:
print("Looking at dataset", dataset_name)
if len(list(load_all_results(dataset_name))) > 0:
results = load_all_results(dataset_name)
dataset, _ = get_dataset(dataset_name)
results = compute_metrics_all_runs(dataset, results, args.recompute)
for res in results:
res['dataset'] = dataset_name
dfs.append(res)
if len(dfs) > 0:
with open(args.output, 'w', newline='') as csvfile:
names = list(dfs[0].keys())
writer = csv.DictWriter(csvfile, fieldnames=names)
writer.writeheader()
for res in dfs:
writer.writerow(res)