vvwangvv commited on
Commit
550fcd3
·
verified ·
1 Parent(s): 6c54117

Add dev/test split tag to sample_id and audio.path

Browse files
Files changed (3) hide show
  1. README.md +11 -11
  2. data/acr/dev.parquet +2 -2
  3. data/ccr/dev.parquet +2 -2
README.md CHANGED
@@ -57,11 +57,11 @@ size_categories:
57
 
58
  Blind **development** subset of the VMC 2026 Track 1 (URGENT 2026 Speech Quality Assessment) data. Each row provides a `sample_id` and audio only -- no labels, no system identifiers, no metadata. Use this set to develop and validate your predictor; the held-out evaluation set lives at [`urgent-challenge/vmc2026-track1-test`](https://huggingface.co/datasets/urgent-challenge/vmc2026-track1-test).
59
 
60
- The data is organized into two configs corresponding to two subjective evaluation paradigms: absolute rating (`acr`) and pairwise comparison (`ccr`). The `sample_id` values are namespaced strings such as `vmc2026-track1-acr_489` and `vmc2026-track1-ccr_7233`, so a participant can submit one mixed prediction file and the organizer can split it by the `acr` / `ccr` segment.
61
 
62
  The dev and test sets are constructed from disjoint base utterances and disjoint speakers (no base noisy clip and no speaker appears in both); for CCR this means no preference-pair audio appears in both sets. Splits are balanced per language at roughly 20% / 80%.
63
 
64
- > Note: `sample_id` values are drawn from a single 0..N-1 numbering shared with the test set, so the IDs in this dev set are not contiguous (e.g. `vmc2026-track1-acr_28`, `vmc2026-track1-acr_29`, `vmc2026-track1-acr_30`, `vmc2026-track1-acr_31`, `vmc2026-track1-acr_52`, ...).
65
 
66
  ## `acr` -- Absolute Category Rating
67
 
@@ -69,7 +69,7 @@ The dev and test sets are constructed from disjoint base utterances and disjoint
69
 
70
  | Column | Type | Description |
71
  |--------|------|-------------|
72
- | `sample_id` | string | Namespaced identifier such as `vmc2026-track1-acr_489` |
73
  | `audio` | Audio | Speech audio (FLAC, mono); inner `path` is `<sample_id>.flac` |
74
  | `sample_rate` | int | Sample rate in Hz |
75
  | `duration` | float | Duration in seconds |
@@ -80,7 +80,7 @@ The dev and test sets are constructed from disjoint base utterances and disjoint
80
 
81
  | Column | Type | Description |
82
  |--------|------|-------------|
83
- | `sample_id` | string | Namespaced identifier such as `vmc2026-track1-ccr_7233` |
84
  | `audio_a` | Audio | Speech audio from system A (FLAC, mono); inner `path` is `<sample_id>_a.flac` |
85
  | `audio_b` | Audio | Speech audio from system B (FLAC, mono); inner `path` is `<sample_id>_b.flac` |
86
  | `sample_rate` | int | Sample rate in Hz |
@@ -91,8 +91,8 @@ The dev and test sets are constructed from disjoint base utterances and disjoint
91
  Submit one space-delimited, headerless `predictions.scp` file with one prediction per line:
92
 
93
  ```text
94
- vmc2026-track1-acr_489 3.42
95
- vmc2026-track1-ccr_7233 -0.15
96
  ```
97
 
98
  The file should contain exactly 1,008 ACR rows and 2,520 CCR rows -- one prediction per `sample_id` in this dataset. ACR scores must lie in [1, 5]; CCR scores in [-3, +3]. Preference accuracy for CCR is derived from the sign of the predicted CMOS.
@@ -111,9 +111,9 @@ Actual contents of the first row of each config (audio arrays truncated for disp
111
  ```python
112
  >>> acr[0]
113
  {
114
- 'sample_id': 'vmc2026-track1-acr_489',
115
  'audio': {
116
- 'path': 'vmc2026-track1-acr_489.flac',
117
  'array': array([-0.00039673, -0.00054932, -0.00045776, -0.00048828, ...]),
118
  'sampling_rate': 32000,
119
  },
@@ -123,14 +123,14 @@ Actual contents of the first row of each config (audio arrays truncated for disp
123
 
124
  >>> ccr[0]
125
  {
126
- 'sample_id': 'vmc2026-track1-ccr_7233',
127
  'audio_a': {
128
- 'path': 'vmc2026-track1-ccr_7233_a.flac',
129
  'array': array([0.00054932, 0.00079346, 0.00079346, 0.00076294, ...]),
130
  'sampling_rate': 16000,
131
  },
132
  'audio_b': {
133
- 'path': 'vmc2026-track1-ccr_7233_b.flac',
134
  'array': array([0.03192139, 0.06243896, 0.07189941, 0.08477783, ...]),
135
  'sampling_rate': 16000,
136
  },
 
57
 
58
  Blind **development** subset of the VMC 2026 Track 1 (URGENT 2026 Speech Quality Assessment) data. Each row provides a `sample_id` and audio only -- no labels, no system identifiers, no metadata. Use this set to develop and validate your predictor; the held-out evaluation set lives at [`urgent-challenge/vmc2026-track1-test`](https://huggingface.co/datasets/urgent-challenge/vmc2026-track1-test).
59
 
60
+ The data is organized into two configs corresponding to two subjective evaluation paradigms: absolute rating (`acr`) and pairwise comparison (`ccr`). The `sample_id` values are namespaced strings such as `vmc2026-track1-dev-acr_489` and `vmc2026-track1-dev-ccr_7233`. The namespace encodes track / split / task: `vmc2026-track1-{dev|test}-{acr|ccr}_{index}`, so a participant can submit one mixed prediction file and the organizer can split it by the `acr` / `ccr` segment, while the `dev` / `test` segment makes the IDs disjoint from the held-out evaluation set.
61
 
62
  The dev and test sets are constructed from disjoint base utterances and disjoint speakers (no base noisy clip and no speaker appears in both); for CCR this means no preference-pair audio appears in both sets. Splits are balanced per language at roughly 20% / 80%.
63
 
64
+ > Note: `sample_id` indices are drawn from a single 0..N-1 numbering shared with the test set, so the IDs in this dev set are not contiguous (e.g. `vmc2026-track1-dev-acr_28`, `vmc2026-track1-dev-acr_29`, `vmc2026-track1-dev-acr_30`, `vmc2026-track1-dev-acr_31`, `vmc2026-track1-dev-acr_52`, ...).
65
 
66
  ## `acr` -- Absolute Category Rating
67
 
 
69
 
70
  | Column | Type | Description |
71
  |--------|------|-------------|
72
+ | `sample_id` | string | Namespaced identifier such as `vmc2026-track1-dev-acr_489` |
73
  | `audio` | Audio | Speech audio (FLAC, mono); inner `path` is `<sample_id>.flac` |
74
  | `sample_rate` | int | Sample rate in Hz |
75
  | `duration` | float | Duration in seconds |
 
80
 
81
  | Column | Type | Description |
82
  |--------|------|-------------|
83
+ | `sample_id` | string | Namespaced identifier such as `vmc2026-track1-dev-ccr_7233` |
84
  | `audio_a` | Audio | Speech audio from system A (FLAC, mono); inner `path` is `<sample_id>_a.flac` |
85
  | `audio_b` | Audio | Speech audio from system B (FLAC, mono); inner `path` is `<sample_id>_b.flac` |
86
  | `sample_rate` | int | Sample rate in Hz |
 
91
  Submit one space-delimited, headerless `predictions.scp` file with one prediction per line:
92
 
93
  ```text
94
+ vmc2026-track1-dev-acr_489 3.42
95
+ vmc2026-track1-dev-ccr_7233 -0.15
96
  ```
97
 
98
  The file should contain exactly 1,008 ACR rows and 2,520 CCR rows -- one prediction per `sample_id` in this dataset. ACR scores must lie in [1, 5]; CCR scores in [-3, +3]. Preference accuracy for CCR is derived from the sign of the predicted CMOS.
 
111
  ```python
112
  >>> acr[0]
113
  {
114
+ 'sample_id': 'vmc2026-track1-dev-acr_489',
115
  'audio': {
116
+ 'path': 'vmc2026-track1-dev-acr_489.flac',
117
  'array': array([-0.00039673, -0.00054932, -0.00045776, -0.00048828, ...]),
118
  'sampling_rate': 32000,
119
  },
 
123
 
124
  >>> ccr[0]
125
  {
126
+ 'sample_id': 'vmc2026-track1-dev-ccr_7233',
127
  'audio_a': {
128
+ 'path': 'vmc2026-track1-dev-ccr_7233_a.flac',
129
  'array': array([0.00054932, 0.00079346, 0.00079346, 0.00076294, ...]),
130
  'sampling_rate': 16000,
131
  },
132
  'audio_b': {
133
+ 'path': 'vmc2026-track1-dev-ccr_7233_b.flac',
134
  'array': array([0.03192139, 0.06243896, 0.07189941, 0.08477783, ...]),
135
  'sampling_rate': 16000,
136
  },
data/acr/dev.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f77d4c386ae7f0057b010555dcfb1389552ccfee712a45955653035a392f51ee
3
- size 111842124
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44a1be607d85c8a3724b3cc9affb0e36daf704908e8eb42c9906ec263219734a
3
+ size 111843319
data/ccr/dev.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:86f18f82fdfb7ba9f9fb2d0c498fced9c18b1ecbb157cbdab2627aa05f19d60c
3
- size 538595065
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f81a722e1192754f5963a2cb61053ab3b60e6345af39a4781f78a1b51cc0e183
3
+ size 462571134