OpenASR commited on
Commit
4c8deac
Β·
verified Β·
1 Parent(s): 3d74140

docs: align card with sole ReDimNet2 embedder wording

Browse files
Files changed (1) hide show
  1. README.md +4 -3
README.md CHANGED
@@ -29,7 +29,7 @@ pure-Rust inference, **no Python at inference time**.
29
 
30
  ## ✨ Highlights
31
 
32
- - πŸ—£οΈ **OpenASR speaker embedder** β€” required capability pack for anonymous speaker labels on any ASR family (fail-closed when missing)
33
  - 🧬 **192-dim ReDimNet2-B6** β€” PalabraAI's dimension-reshaping speaker net (12.5M params) with a Chinese-enhanced vb2+vox2+cnc2 training mix
34
  - πŸ”’ **Diarization, not identification** β€” anonymous session-relative labels; embeddings stay local and are discarded after the request unless you explicitly enroll a local profile
35
  - 🎯 **Parity-gated packaging** β€” ggml-graph forward pass matches the upstream Python reference at cosine β‰₯ 0.9999 on held-out fixtures
@@ -61,8 +61,9 @@ ReDimNet2-B6 is PalabraAI's 12.5M-parameter speaker-embedding model from the
61
  ReDimNet2 family, trained on a VoxBlink2 + VoxCeleb2 + CN-Celeb2 mix so English and
62
  Chinese speakers share one embedding space. OpenASR packages the MIT-licensed
63
  checkpoint as a local `.oasr` capability pack and runs it through a ggml graph
64
- (not a pure-Rust hand-written forward). This is the sole public speaker-embedding pack for OpenASR diarization and Voice ID:
65
- without it, speaker-embedding paths fail closed (no legacy fallback). Embeddings are
 
66
  192-d cosine vectors with a ReDimNet-specific calibration profile.
67
 
68
  ## βš™οΈ How this pack was made
 
29
 
30
  ## ✨ Highlights
31
 
32
+ - πŸ—£οΈ **OpenASR speaker embedder** β€” the only supported speaker-embedding pack for diarization and Voice ID; required for anonymous speaker labels on any ASR family
33
  - 🧬 **192-dim ReDimNet2-B6** β€” PalabraAI's dimension-reshaping speaker net (12.5M params) with a Chinese-enhanced vb2+vox2+cnc2 training mix
34
  - πŸ”’ **Diarization, not identification** β€” anonymous session-relative labels; embeddings stay local and are discarded after the request unless you explicitly enroll a local profile
35
  - 🎯 **Parity-gated packaging** β€” ggml-graph forward pass matches the upstream Python reference at cosine β‰₯ 0.9999 on held-out fixtures
 
61
  ReDimNet2 family, trained on a VoxBlink2 + VoxCeleb2 + CN-Celeb2 mix so English and
62
  Chinese speakers share one embedding space. OpenASR packages the MIT-licensed
63
  checkpoint as a local `.oasr` capability pack and runs it through a ggml graph
64
+ (not a pure-Rust hand-written forward). This is the only supported speaker-embedding
65
+ stage for diarization and Voice ID: when the pack is missing, diarize/Voice ID
66
+ requests fail closed rather than falling back to another embedder. Embeddings are
67
  192-d cosine vectors with a ReDimNet-specific calibration profile.
68
 
69
  ## βš™οΈ How this pack was made