cvxhull commited on
Commit
d077296
·
verified ·
1 Parent(s): 603bade

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - automatic-speech-recognition
5
+ language:
6
+ - en
7
+ size_categories:
8
+ - n<1K
9
+ tags:
10
+ - calibration
11
+ - librispeech
12
+ ---
13
+
14
+ # STT Calibration Dataset
15
+
16
+ Tiny calibration dataset for PersonalAssistant STT service. Used on first run to auto-tune speculative pre-transcription parameters.
17
+
18
+ ## Contents
19
+
20
+ | File | Duration | Size | Purpose |
21
+ |------|----------|------|---------|
22
+ | `short.wav` | 3.5s | 110KB | RTF measurement + VAD onset latency |
23
+ | `long.wav` | 23.3s | 729KB | Split quality calibration (whole vs split comparison) |
24
+ | `very_long.wav` | 56.8s | 1.8MB | Multi-split calibration (find minimum safe split interval) |
25
+ | `manifest.json` | - | 2KB | Sample metadata + reference transcriptions |
26
+
27
+ Total: ~2.6MB
28
+
29
+ ## Source
30
+
31
+ All audio from [LibriSpeech](https://www.openslr.org/12/) test-clean (CC BY 4.0). `very_long.wav` is 4 samples concatenated with 0.5s silence gaps.
32
+
33
+ ## Usage
34
+
35
+ Downloaded automatically on first STT run via `huggingface_hub.snapshot_download`:
36
+
37
+ ```python
38
+ from huggingface_hub import snapshot_download
39
+ path = snapshot_download("cvxhull/stt-calibration")
40
+ ```
41
+
42
+ Cached in `~/.cache/huggingface/hub/`. No re-download on subsequent runs.
43
+
44
+ ## Calibration Parameters
45
+
46
+ | Parameter | How it's calibrated |
47
+ |-----------|-------------------|
48
+ | ASR RTF | Transcribe `short.wav`, measure wall time / audio duration |
49
+ | Split interval | Derived from RTF: `clamp(target_latency / rtf, min_safe_split, buffer_timeout)` |
50
+ | Min safe split | Transcribe `long.wav` whole vs split at [5s, 8s, 12s], find minimum with similarity >= 0.95 |
51
+ | VAD onset latency | Feed `short.wav` through VAD, measure chunks until first detection |