byangderek commited on
Commit
8c4be94
·
verified ·
1 Parent(s): ab65109

Publish TTS Voice Direction benchmark dataset

Browse files
Files changed (2) hide show
  1. README.md +127 -0
  2. voice_direction_dataset.jsonl +0 -0
README.md ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: TTS Voice Direction Benchmark
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - text-to-speech
7
+ tags:
8
+ - text-to-speech
9
+ - voice-direction
10
+ - voice-cloning
11
+ - benchmark
12
+ ---
13
+
14
+ # TTS Voice Direction Benchmark
15
+
16
+ 🏆 [Leaderboard](https://breezeblue.ai/benchmarks/tts-voice-direction) | 🛠️ [Evaluation Suite](https://github.com/breezeblue-ai/tts-voice-direction-benchmark)
17
+
18
+ TTS Voice Direction is a benchmark of **700 reference-conditioned speech
19
+ generation tasks**. It evaluates whether a text-to-speech model can preserve a
20
+ reference speaker while following a natural-language direction that controls
21
+ how a new transcript is performed.
22
+
23
+ The benchmark emphasizes practical voice acting beyond basic emotion control.
24
+ It covers accent, acoustic delivery, vocal events, emotion, physiological
25
+ state, communicative intent, role performance, multi-attribute composition,
26
+ and temporal variation.
27
+
28
+ ## Dataset At A Glance
29
+
30
+ - **700** English voice-direction tasks
31
+ - **25** synthetic reference voices
32
+ - **9** fine-grained direction categories
33
+ - **3** macro categories
34
+ - One reference audio, reference transcript, direction, and target transcript
35
+ per task
36
+ - Four-digit output IDs from `0001` through `0700`
37
+
38
+ ## Taxonomy
39
+
40
+ | Macro category | Fine-grained category | Cases |
41
+ |---|---|---:|
42
+ | Foundational Speech Control | Accent | 50 |
43
+ | Foundational Speech Control | Acoustic Attributes | 100 |
44
+ | Foundational Speech Control | Vocal Events | 50 |
45
+ | Situational Voice Acting | Emotion | 150 |
46
+ | Situational Voice Acting | Physiological State | 50 |
47
+ | Situational Voice Acting | Communicative Intent | 50 |
48
+ | Situational Voice Acting | Role | 100 |
49
+ | Complex | Composition | 100 |
50
+ | Complex | Variation | 50 |
51
+
52
+ Foundational cases target directly controllable speech properties. Situational
53
+ cases describe a high-level state, purpose, or role and require the model to
54
+ realize an appropriate performance. Complex cases combine multiple controls or
55
+ request a perceptible change over time.
56
+
57
+ ## Reference Voices
58
+
59
+ All 25 reference voices are synthetic and sourced from the BreezeBlue Voice
60
+ Library. Reference files are stored in `reference_audio/` and named
61
+ `voice-01.wav` through `voice-25.wav`.
62
+
63
+ The benchmark rotates directions across the reference set so that each model is
64
+ tested on both instruction following and speaker preservation. Reference voice
65
+ identity is evaluated separately from direction following.
66
+
67
+ ## Data Format
68
+
69
+ Each line in `voice_direction_dataset.jsonl` is one task:
70
+
71
+ ```json
72
+ {
73
+ "description_id": "0001",
74
+ "language": "en",
75
+ "macro_category": "foundational_speech_control",
76
+ "category": "accent",
77
+ "voice_id": "voice-15",
78
+ "ref_audio_path": "reference_audio/voice-15.wav",
79
+ "ref_audio_text": "Reference transcript...",
80
+ "description": "Use a moderate, consistent General American English accent throughout the line.",
81
+ "transcript": "Target transcript..."
82
+ }
83
+ ```
84
+
85
+ | Field | Description |
86
+ |---|---|
87
+ | `description_id` | Stable four-digit task ID |
88
+ | `language` | Target transcript language; currently `en` |
89
+ | `macro_category` | One of the three aggregation groups |
90
+ | `category` | One of the nine fine-grained direction categories |
91
+ | `voice_id` | Stable reference-voice identifier |
92
+ | `ref_audio_path` | Reference audio path relative to the dataset file |
93
+ | `ref_audio_text` | Transcript of the reference audio |
94
+ | `description` | Natural-language voice-direction instruction |
95
+ | `transcript` | Text to synthesize |
96
+
97
+ ## Running The Benchmark
98
+
99
+ For every record:
100
+
101
+ 1. Condition the model on `ref_audio_path` and, when required by the model,
102
+ `ref_audio_text`.
103
+ 2. Use `description` as the voice-direction instruction.
104
+ 3. Synthesize the exact `transcript`.
105
+ 4. Save one audio file named after `description_id`, for example `0001.wav`.
106
+
107
+ Do not use `macro_category` or `category` as additional model inputs. They are
108
+ provided only for evaluation and analysis.
109
+
110
+ ## Evaluation
111
+
112
+ The benchmark reports two complementary metrics:
113
+
114
+ - **Voice Direction Score (VDS)** is a holistic 1-5 judge score for audible
115
+ fulfillment of the requested direction, requested degree or timing, semantic
116
+ preservation, and coherent execution.
117
+ - **Speaker Similarity (SIM)** is cosine similarity between WavLM-Large ECAPA
118
+ embeddings of the generated and reference audio.
119
+
120
+ Both metrics are aggregated in the same hierarchy: reference voices are
121
+ macro-averaged within each fine-grained category, fine-grained categories are
122
+ equally averaged within each macro category, and the three macro-category
123
+ scores are equally averaged into the overall score.
124
+
125
+ The self-contained judge prompts, evaluation scripts, speaker-embedding code,
126
+ and metric documentation are available in the
127
+ [evaluation suite](https://github.com/breezeblue-ai/tts-voice-direction-benchmark).
voice_direction_dataset.jsonl ADDED
The diff for this file is too large to render. See raw diff