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
This directory contains reproducible benchmark artifacts for polyvoice.
Every dataset must follow this directory structure:
```
data/<dataset-name>/
├── audio/
│ ├── file1.wav
│ ├── file2.wav
│ └── ...
└── rttm/
```
- -
Download models for the profile you want to benchmark:
```bash
cargo run --release --features cli --bin polyvoice -- download-models --profile balanced
```
```bash
cargo run --release --features cli --bin polyvoice-bench -- \
data/voxconverse-test \
--profile balanced \
--collar 0.25 \
--output benchmarks/results/voxconverse-test-$(date +%Y%m%d).json
```
```bash
cargo run --release --features cli --bin polyvoice-bench -- \
data/ami-test-single \
--profile balanced \
--max-files 1 \
--output benchmarks/results/ami-smoke.json
```
Benchmark artifacts are JSON files produced by `polyvoice-bench`. The current schema is `polyvoice-bench-v0.6`.
Key fields:
Baseline results are committed to `tests/der_baseline.json`. These numbers are used by regression tests to detect accuracy drift.
To update baselines after a deliberate algorithmic change:
1. 2.3.4.
- --