Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
audio
audioduration (s)
3.02
30
End of preview. Expand in Data Studio

πŸ’Ž Diamond Benchmark

750 real degraded speech recordings for evaluating restoration models

Clips Audio Metrics Model


These are real, genuinely degraded speech recordings β€” not synthetic, not clean audio re-degraded by a pipeline. Each clip carries the damage of an actual real-world capture: low-bitrate codec compression, narrow bandwidth, background noise, and clipping. Together they form a fixed benchmark for measuring how well a speech-restoration model recovers clean, studio-quality audio from real degradation.

Every clip ships with its reference transcript, so restoration can be scored on two axes at once β€” perceptual quality and content preservation.

What's inside

Clips 750 degraded .wav recordings
Language English
Audio real degraded speech (codec Β· band-limit Β· noise Β· clipping)
Reference ground-truth transcript per clip

Structure

diamond-bench/
β”œβ”€β”€ audio/
β”‚   └── <set>_<id>.wav      # 750 degraded input clips
└── manifest.csv            # per-clip metadata

manifest.csv columns:

column meaning
set source subset the clip belongs to
id clip id within its set
emolia_id original recording id
audio_path relative path under audio/
sample_rate clip sample rate (Hz)
duration_sec clip length (seconds)
speaker speaker id
text reference transcript (used for CER)

How to score

Two complementary metrics β€” one alone is not enough:

  • DNSMOS-P.835 (sig_bak_ovr.onnx, raw windowed mean) β€” perceptual quality (SIG / BAK / OVRL). How good the audio sounds.
  • CER (ASR vs. text) β€” content preservation. A generative restorer can sound clean while smearing or dropping words; DNSMOS is blind to that, CER is not.

A genuine gain means OVRL rises without CER rising.

Loading

import pandas as pd
import soundfile as sf
from huggingface_hub import snapshot_download

root = snapshot_download("nineninesix/diamond-benchmark", repo_type="dataset")
meta = pd.read_csv(f"{root}/manifest.csv")

row = meta.iloc[0]
wav, sr = sf.read(f"{root}/{row.audio_path}")
print(row.id, f"{row.duration_sec:.1f}s β€”", row.text)

Links

Downloads last month
-