anubhav-tripathi-usinc commited on
Commit
879658f
·
verified ·
1 Parent(s): b263e85

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. README.md +73 -0
  2. test/0026_Restaurant_snr0dB.wav +3 -0
  3. test/0030_Restaurant_snr0dB.wav +3 -0
  4. test/0048_Restaurant_snr0dB.wav +3 -0
  5. test/0086_Restaurant_snr0dB.wav +3 -0
  6. test/0090_Restaurant_snr0dB.wav +3 -0
  7. test/0109_Restaurant_snr0dB.wav +3 -0
  8. test/0125_Restaurant_snr0dB.wav +3 -0
  9. test/0167_Restaurant_snr0dB.wav +3 -0
  10. test/0193_Restaurant_snr0dB.wav +3 -0
  11. test/0219_Restaurant_snr0dB.wav +3 -0
  12. test/0235_Restaurant_snr0dB.wav +3 -0
  13. test/0261_Restaurant_snr0dB.wav +3 -0
  14. test/0277_Restaurant_snr0dB.wav +3 -0
  15. test/0283_Restaurant_snr0dB.wav +3 -0
  16. test/0336_Restaurant_snr0dB.wav +3 -0
  17. test/0358_Restaurant_snr0dB.wav +3 -0
  18. test/0362_Restaurant_snr0dB.wav +3 -0
  19. test/0374_Restaurant_snr0dB.wav +3 -0
  20. test/0408_Restaurant_snr0dB.wav +3 -0
  21. test/0424_Restaurant_snr0dB.wav +3 -0
  22. test/0432_Restaurant_snr0dB.wav +3 -0
  23. test/0466_Restaurant_snr0dB.wav +3 -0
  24. test/0492_Restaurant_snr0dB.wav +3 -0
  25. test/0527_Restaurant_snr0dB.wav +3 -0
  26. test/0531_Restaurant_snr0dB.wav +3 -0
  27. test/0549_Restaurant_snr0dB.wav +3 -0
  28. test/0565_Restaurant_snr0dB.wav +3 -0
  29. test/0587_Restaurant_snr0dB.wav +3 -0
  30. test/0591_Restaurant_snr0dB.wav +3 -0
  31. test/0659_Restaurant_snr0dB.wav +3 -0
  32. test/0663_Restaurant_snr0dB.wav +3 -0
  33. test/0675_Restaurant_snr0dB.wav +3 -0
  34. test/0681_Restaurant_snr0dB.wav +3 -0
  35. test/0718_Restaurant_snr0dB.wav +3 -0
  36. test/0734_Restaurant_snr0dB.wav +3 -0
  37. test/0776_Restaurant_snr0dB.wav +3 -0
  38. test/0782_Restaurant_snr0dB.wav +3 -0
  39. test/0818_Restaurant_snr0dB.wav +3 -0
  40. test/0834_Restaurant_snr0dB.wav +3 -0
  41. test/0876_Restaurant_snr0dB.wav +3 -0
  42. test/0882_Restaurant_snr0dB.wav +3 -0
  43. test/0894_Restaurant_snr0dB.wav +3 -0
  44. test/0921_Restaurant_snr0dB.wav +3 -0
  45. test/0937_Restaurant_snr0dB.wav +3 -0
  46. test/0959_Restaurant_snr0dB.wav +3 -0
  47. test/0981_Restaurant_snr0dB.wav +3 -0
  48. test/0997_Restaurant_snr0dB.wav +3 -0
  49. test/metadata.csv +0 -0
  50. train/metadata.csv +0 -0
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - automatic-speech-recognition
5
+ language:
6
+ - en
7
+ tags:
8
+ - audio
9
+ - speech
10
+ - asr
11
+ - benchmark
12
+ - noisy-speech
13
+ size_categories:
14
+ - 1K<n<10K
15
+ configs:
16
+ - config_name: default
17
+ data_files:
18
+ - split: train
19
+ path: train/metadata.csv
20
+ ---
21
+
22
+ # ASR Eval — Noisy Speech Mix v1 (1K)
23
+
24
+ A 1,000-sample English speech benchmark dataset for evaluating ASR systems under realistic noisy conditions.
25
+
26
+ ## Dataset Summary
27
+
28
+ Each sample contains a real human speech recording mixed with ambient background noise at a controlled Signal-to-Noise Ratio (SNR = 0 dB), making it a challenging benchmark for ASR robustness.
29
+
30
+ ## Dataset Structure
31
+
32
+ | Column | Type | Description |
33
+ |---|---|---|
34
+ | `uuid` | string | Unique sample identifier |
35
+ | `audio` | Audio (16 kHz) | Noisy speech — voice mixed with background noise |
36
+ | `duration` | float | Audio duration in seconds |
37
+ | `transcript` | string | Ground truth transcript |
38
+
39
+ ## Usage
40
+
41
+ ```python
42
+ from datasets import load_dataset
43
+
44
+ ds = load_dataset("ultrasafe-ai/asr-eval-noise-clean-mix-v1-1k", split="test")
45
+
46
+ sample = ds[0]
47
+ print(sample["transcript"])
48
+ # → "this election is very important to..."
49
+
50
+ audio_array = sample["audio"]["array"] # numpy array, float32
51
+ sample_rate = sample["audio"]["sampling_rate"] # 16000
52
+ duration_sec = sample["duration"] # e.g. 9.32
53
+ ```
54
+
55
+ ## Benchmarking Example
56
+
57
+ ```python
58
+ # Transcribe and compute WER
59
+ from jiwer import wer
60
+
61
+ reference = sample["transcript"]
62
+ hypothesis = your_asr_model(sample["audio"]["array"])
63
+ score = wer(reference, hypothesis)
64
+ print(f"WER: {score:.3f}")
65
+ ```
66
+
67
+ ## Dataset Stats
68
+
69
+ - **Samples:** 1,000
70
+ - **Language:** English
71
+ - **Sample rate:** 16,000 Hz (mono)
72
+ - **Avg duration:** ~8–12 seconds per sample
73
+ - **Noise condition:** Ambient background noise mixed at SNR = 0 dB (equal loudness — challenging)
test/0026_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:045f7c0b710a90b846cfa25c0e4b2e8fb44b9e4a2f8b2773edcde48ea678d6d6
3
+ size 473644
test/0030_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cbe6c839b3a4d812ed1ef415c236efa0444affcc9524f8f9e4edd76a4994253
3
+ size 309196
test/0048_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b3d5035cfe5f6cd14559790e1a116cc022fda70ffac061e2bf7f13bfed875f5
3
+ size 476524
test/0086_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6581f8dd8b07700541254a5c5db1211915e8bc7daaca11f2acdef50c9ae920d
3
+ size 468844
test/0090_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:756ad156cf69f923783e8e61ecbff34e028e27f6455494671fd0bb5ad2fcbcc6
3
+ size 475564
test/0109_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b03d0ea652e35c9ad1606320cd2f316b23cbf8c3cb42c7912d004708a16ccca
3
+ size 478444
test/0125_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87a1c1ddc3b0e0bfc59580951a487c525cdc4d6cf3112055f911dc803269bfee
3
+ size 476524
test/0167_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad1743ec1a10f329b4df0cf793345f1c0b9ede6fa65f2499bf9c9f31e22608cb
3
+ size 477164
test/0193_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9726fe6d2ef334b87a8dcb98bb4ddc70fc60fe6db2bb33efa10bc013af171d2f
3
+ size 473324
test/0219_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04b8f9d7b73ff67fca43cf6c8023767ff3160ec6558dc0d81e697d5bce63e645
3
+ size 477484
test/0235_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de8e213912eb9afb96b1362505b2205549917cd13ec8e4e51dfc41dd56ba4842
3
+ size 478444
test/0261_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29d9a1ef6c33913847a6783cb60f27748d8a7ce6a24777fe44a28d9d05c107b4
3
+ size 228844
test/0277_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:032b023a71f40d0c5df37fe0032494b06c884b4e6ed11841bba53709e934c1bc
3
+ size 464044
test/0283_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18550b0cb942bb4474e649e2424e9d6275bc6b7fe209688ad991652296d3169e
3
+ size 468844
test/0336_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:480b2e04aae90d6b48fb4ff7ceb415cda4c00c7370a8e125c7acaf7eb3134d05
3
+ size 473644
test/0358_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:781c2613ef15c5193faf9ad2f58fc3bd333964e401a4dcbbb1917ea00d3b6bfe
3
+ size 467884
test/0362_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b26ae501167ed0f4b72de6c21524a6c75e0ef54da8bd9a858437abf2c3f653ce
3
+ size 474604
test/0374_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d0a2298f75ab1c39709f928edd278e3bf2c6ee2b7a7fb976b9cf3f6ef92dc95
3
+ size 154604
test/0408_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ec017c2f4e3715950109856d74834cbd1ae809ddc0147093b7eb72100372540
3
+ size 476204
test/0424_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:909ef3e60de3507c32a4f400c67cabbb9ea04e884f776803ac369e91572e62e1
3
+ size 472364
test/0432_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b476a09ed61d994ada1a3875460ae28e1d05d1c79dbd3b625ba22c6d9f9f5dd2
3
+ size 478124
test/0466_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d53f811c506ac90d941906216116ec00d880c1d2a8344bcfc15d5592ad57217d
3
+ size 462124
test/0492_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:481ee499e0356f349d05d6cdb9b96c71ff6a606d37dcc899a0a632bee2ef8ab3
3
+ size 447724
test/0527_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce3cb4034ade19088e287e1a73d524302003e11db3debc9d881b2035bea991bb
3
+ size 475564
test/0531_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01352e6199bc7f2fef477132fa4061d29cd13a4d788aed8531942c0b41d1ab2f
3
+ size 472364
test/0549_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9d9d68183965b3009eeb3621ffffe1547227817e2f8497035c44d8b57099e02
3
+ size 474604
test/0565_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41a2f426b94daa2e3219c300b27a282318e68c13671eb02777d6a6482693382b
3
+ size 434924
test/0587_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31d8f63f5fcbeb5f8b3f23f06a6270a927fcbac0303c18bef8cde18aa925371d
3
+ size 475244
test/0591_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2444224c5ed76caa06d11ac6cefc52f6d7fbade9a11528fc276d10a3d875b6d
3
+ size 450284
test/0659_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c23ed37dc5a6cf2d8751576817a751c531a8fc1df602b961096d0afa03abe855
3
+ size 477484
test/0663_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ef11851be057b74918fb0bf38ae6ec9accf701891c18b99abb0ef2460d952d0
3
+ size 473644
test/0675_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8138b0c6010ed7e87da76435afb8effe92caff89e7e37c009275713c8b9df4a
3
+ size 474604
test/0681_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ee5cdff4b8daf60160877c66a5f33f85079b907dedf9e6ece2a708b92b307ec
3
+ size 478444
test/0718_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:492410246a07d454b5d1342479d7ddb9b95c8622597e6c437cd5f42a895746aa
3
+ size 471372
test/0734_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0f77092e74dd9bb6127a20213b361547d6d53778eea4e7454e0b2440bc03cfe
3
+ size 446444
test/0776_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:614f065725df91191d4de31ccee602384cfb2a3f222dc38f0cc84e0c18075623
3
+ size 475244
test/0782_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9566031abcc2dba6b9e590c7f7bb4f122614f79f87b2fa35f1e0193f76a6b511
3
+ size 474284
test/0818_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69a874cdfddb35b2da342d3a537b734c914c290269facf676d712bccc2bdfb39
3
+ size 469484
test/0834_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:235edc9ba0e7710dd280116107c3d8cbbe4928bc669fa5987d85b59c8af7125c
3
+ size 473644
test/0876_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:567c7eecbd9b75cba395e394a457f91a23546efc0dd20b4959e2583ba86f5018
3
+ size 479404
test/0882_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:852ce5e22a208b88c5a65cff033bdb331f9e8df1bbdd37df9131da6790008681
3
+ size 331244
test/0894_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af21789a41124047d3a46ceef4c0b78598f39f4d6cf7dcbae20c6458f938049a
3
+ size 477484
test/0921_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2d72808b992817f31026a9b21ab0e9d7e1815db9284dfb1187e34b5e426e40b
3
+ size 472364
test/0937_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f724161033131bfef27c42ce4a4c7459152da5bb140151daf5ac168a5d291d36
3
+ size 446764
test/0959_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d521c7d185b29bdd4e35908723c8553f15bf80dceb5a6e684e56d62cb4c1189a
3
+ size 476524
test/0981_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e35c88dde77e5cf211840cd6dce792b10a489c8bb7df3fe5f46d974731c6714
3
+ size 475244
test/0997_Restaurant_snr0dB.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87ba00af2ce0491f227aa42743ccd790c98d38a1d09fc126ad9676bf5dad2000
3
+ size 476524
test/metadata.csv ADDED
The diff for this file is too large to render. See raw diff
 
train/metadata.csv ADDED
The diff for this file is too large to render. See raw diff