Spaces:
Running on Zero
Running on Zero
File size: 3,128 Bytes
875e4af | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | # Architecture
## Chosen pipeline
```text
Audio
|
v
16 kHz Mono Preprocessing
|
v
Whisper Tiny
Frozen Encoder
|
v
Mean Pooling (over encoder time axis -> 384-dim vector)
|
v
Logistic Regression
|
v
P(END)
|
v
Threshold / Debounce / Hysteresis
|
v
END / CONTINUE
```
## Why each stage exists
- **16kHz mono preprocessing**: matches both the dataset's native format
(confirmed: `pipecat-ai/smart-turn-data-v3.2-train` is 16kHz mono for
every row inspected β `docs/PHASE3_REAL_AUDIO_VALIDATION.md`) and
Whisper's expected input format. No resampling needed for in-distribution
data; `src/turn_detector/audio_io.py` resamples defensively if a caller
provides audio at a different rate.
- **Whisper Tiny frozen encoder**: chosen over the acoustic-only baseline
based on measured evidence, not the assessment brief's suggestion alone
β see `docs/RESULTS.md` for the actual numbers (F1 0.693 vs. 0.575,
directional improvement on independent samples from the same dataset)
and `docs/ERROR_ANALYSIS.md` for why: it specifically reduced the
filler-associated false-END errors the acoustic model struggled with.
Frozen (not fine-tuned) because fine-tuning was explicitly out of scope
for this submission's timeline β see "Future Work" in the README.
- **Mean pooling**: the simplest, cheapest way to collapse Whisper's
variable-length encoder output into a fixed-size vector for a linear
classifier. Untested alternatives (attention pooling, last-token
pooling, temporal-aware pooling) are noted as future work, not assumed
inferior β mean pooling is what was actually measured.
- **Logistic Regression**: smallest classifier that worked well in
testing (92 parameters, ~2.9KB) β chosen over an MLP per the "prefer the
smallest head that works" instruction, and because it was never shown to
underfit in the experiments actually run.
- **Threshold / debounce / hysteresis**: exists because a turn detector
that commits to END the instant `P(END)` crosses 0.5 on a single noisy
call will end turns prematurely on one uncertain pause. This layer
(`src/turn_detector/inference.py`: `TurnDecisionConfig`,
`TurnDecisionState`) lets a caller require sustained evidence β a
minimum confidence margin, and/or several consecutive END calls in a
streaming context β before committing to END, without training a
second model. Defaults are simple (threshold=0.5, no debounce) so the
basic case stays basic; both knobs are opt-in.
## What this diagram does NOT claim
- **Not a continuous per-frame streaming architecture.** Like the dataset
it was trained on, and like the reference Smart Turn project it takes
inspiration from, this is an event-triggered classifier over a buffered
clip, not a frame-by-frame streaming model. See
`docs/INITIAL_ANALYSIS.md` Β§5 for the full discussion of this design
choice and its tradeoffs.
- **Not fine-tuned.** The Whisper encoder's weights are frozen exactly as
measured in EXP-004 β this diagram reflects what was actually built and
evaluated, not a target architecture that was never tested.
|