AkCodes23 commited on
Commit
862a75d
·
verified ·
1 Parent(s): d0b519a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +23 -4
README.md CHANGED
@@ -64,11 +64,30 @@ Total: **60.25 minutes**.
64
  See the project report (GitHub repo) for full methodology and figures.
65
 
66
  ## Schema
67
- `audio` (24 kHz mono), `text`, `normalized_text`, `language`, `language_code`,
 
68
  `emotion` (neutral, happy, sad, angry, excited, calm, fearful, surprised), `style` (narrative, conversational, formal, expressive, whisper), `emotion_confidence`, `tag_source`
69
- (`auto`/`human`), `speaker_id`, `duration`, `snr_db`, `source_video_id`,
70
- `source_url`, `source_channel`, `license`, `segment_start`, `segment_end`,
71
- `sample_rate`.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
 
73
  ## How it was built
74
  1. Curated single-speaker YouTube sources (audiobooks, lectures, news, storytelling).
 
64
  See the project report (GitHub repo) for full methodology and figures.
65
 
66
  ## Schema
67
+ `audio` (24 kHz mono), `text` (raw transcript), `annotated_text` (English code-switch
68
+ spans bracketed, truncation marked with an em dash), `normalized_text`, `language`,
69
  `emotion` (neutral, happy, sad, angry, excited, calm, fearful, surprised), `style` (narrative, conversational, formal, expressive, whisper), `emotion_confidence`, `tag_source`
70
+ (`auto`/`human`), `topic`, `speaker_id`, `gender`, `accent`, `duration`; quality scores
71
+ (`snr_db`, `dnsmos_ovrl/sig/bak`, `dnsmos_pass`, `squim_*`, `mms_align_score`,
72
+ `overlap_flag`, `llm_tts_suitable`); VAD (`valence`/`arousal`/`dominance`); annotation
73
+ flags (below); and provenance (`source_video_id/url/channel`, `license`,
74
+ `segment_start/end`, `sample_rate`).
75
+
76
+ ## Annotation flags
77
+ Each clip records what is imperfect about it, so users can filter rather than trust blindly:
78
+ `has_noise` (DNSMOS < 3.0, or SNR < 18 dB, or noisy pauses), `low_quality_audio` (DNSMOS < 2.8),
79
+ `has_truncation` (ends mid-utterance), `has_codemix` (preserved English in a regional clip;
80
+ note Sarvam ASR transliterates English into Telugu script, so this is currently 0), `has_laughter`
81
+ (audible laughter, set by a listening pass), `emotion_low_confidence` (tag confidence < 0.55),
82
+ `transcript_review_needed` (judge-flagged or alignment < 0.85), `overlap_flag` (possible second
83
+ voice). `annotation_flags` is the pipe-joined list per clip.
84
+
85
+ ## Filtering recommendations
86
+ - Studio-like subset: `dnsmos_pass == true and has_noise == false and has_truncation == false`
87
+ - Expressive subset: `emotion_confidence > 0.7 and emotion != "neutral"`
88
+ - Storytelling subset: `topic in ('mythology', 'folktale', 'fiction')`
89
+ - Clean multilingual subset: `has_codemix == false`
90
+ - Review queue: `transcript_review_needed == true or emotion_low_confidence == true`
91
 
92
  ## How it was built
93
  1. Curated single-speaker YouTube sources (audiobooks, lectures, news, storytelling).