jayliqinzhang commited on
Commit
03017b9
·
verified ·
1 Parent(s): 46d903b

Convert metadata to parquet; update README

Browse files
README.md CHANGED
@@ -24,6 +24,30 @@ This dataset is a modified version of the [LibriSpeech](http://www.openslr.org/1
24
  - **Audio Sampling Rate**: 16 kHz, consistent with LibriSpeech specifications.
25
  - **Speaker Representation**: Multiple speakers retained from LibriSpeech’s corpus, offering diverse voice samples for training and evaluation.
26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  ### Usage
28
 
29
  This dataset is well-suited for ASR tasks, optimized for high-throughput training in distributed environments.
@@ -31,3 +55,10 @@ This dataset is well-suited for ASR tasks, optimized for high-throughput trainin
31
  ### Attribution
32
 
33
  This dataset is derived from the original [LibriSpeech](http://www.openslr.org/12) dataset, with modifications to format. Please cite the original LibriSpeech dataset in any publications or projects using this dataset.
 
 
 
 
 
 
 
 
24
  - **Audio Sampling Rate**: 16 kHz, consistent with LibriSpeech specifications.
25
  - **Speaker Representation**: Multiple speakers retained from LibriSpeech’s corpus, offering diverse voice samples for training and evaluation.
26
 
27
+ ```
28
+ mumospee_librispeech/
29
+ ├── librispeech-parquet/ # audio + transcripts, one parquet per LibriSpeech subset
30
+ │ ├── dev-clean.parquet ... train-other-500.parquet (7 subsets)
31
+ └── metadata/ # lightweight metadata index, one parquet per subset
32
+ ├── dev-clean.parquet ... train-other-500.parquet
33
+ ```
34
+
35
+ The `metadata/` parquet files index the audio segments and contain the following columns:
36
+
37
+ | column | type | description |
38
+ | --- | --- | --- |
39
+ | `path` | string | audio file name (e.g. `2277-149896-0000.flac`) |
40
+ | `url` | string | download URL of the audio parquet shard containing this segment |
41
+ | `type` | string | always `audio` |
42
+ | `duration` | float64 | segment duration in seconds |
43
+ | `language` | string | always `en` |
44
+ | `transcript` | string | transcription |
45
+ | `tag` | string | always `Librispeech` |
46
+ | `split` | string | `train` / `test` / `validation` (LibriSpeech `dev-*` subsets map to `validation`) |
47
+ | `license` | string | always `CC-BY-4.0` |
48
+
49
+ Total segments: 292,367.
50
+
51
  ### Usage
52
 
53
  This dataset is well-suited for ASR tasks, optimized for high-throughput training in distributed environments.
 
55
  ### Attribution
56
 
57
  This dataset is derived from the original [LibriSpeech](http://www.openslr.org/12) dataset, with modifications to format. Please cite the original LibriSpeech dataset in any publications or projects using this dataset.
58
+
59
+ ### Changelog
60
+
61
+ #### 2026-06-30
62
+
63
+ - Converted the `metadata/` index from CSV to parquet (one file per subset).
64
+ - Replaced a leaked local cache path in the audio parquet `file` column with the audio file's basename.
metadata/dev-clean.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:037759305572ae511be81480d9d924c50af2e5c121e9c27bfc69472b2c2f9282
3
+ size 153918
metadata/dev-other.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4e788b9d7721aaae36c2bce1b6b5e26d1d692d1834b5fd3c76add046b6637eb
3
+ size 144378
metadata/test-clean.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d42847537552bfed914e93e7382bdcfc8fd162a5d1823da1c2c53bc18db62fec
3
+ size 149171
metadata/test-other.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93e027e5209ab843525429531ad78aa462bbe323fac875f9180aa11f1a480914
3
+ size 147221
metadata/train-clean-100.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9dfce5edbaebf1a73be94d46cd1bd54d85ae95f14d8b9e9df95271ae00aa1231
3
+ size 2351133
metadata/train-clean-360.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e28022b66140c46c954840eb266d2a6f4794ac2290ae75a3001cf2e3c2426c4f
3
+ size 8358775
metadata/train-other-500.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fed5e27a884bd218834e02d4bd646a63f6fe998842203b1429676f6b18abe42a
3
+ size 11147838