Audio2Face-3D
यह Soniqo पेज स्थानीय speech-swift / speech-core implementation में Audio2Face-3D को दस्तावेज़ करता है। Hugging Face bundle links integration notes के बाद दिए गए हैं।
पहले आंतरिक पेज
Landing cards और docs menus पहले इसी पेज पर आते हैं; source model और bundle links यहीं उपलब्ध रहते हैं।
सारांश
| मॉडल | Audio2Face-3D |
|---|---|
| भूमिका | Speech-to-avatar motion coefficients for downstream renderers |
| Backend | MLX |
| Output | JSONL frames: timestamp plus the full coefficient vector |
| भाषाएँ | Language-independent, audio-driven |
| लाइसेंस | NVIDIA Open Model License |
| स्थिति | Ready through speech avatar-motion and the Audio2Face3D Swift product |
| Source | NVIDIA Audio2Face-3D |
| Swift product | Audio2Face3D |
| CLI / runtime | speech avatar-motion |
उपयोग
नीचे का snippet मौजूदा speech-swift API या command से मेल खाता है।
# Generate avatar motion coefficients from speech audio.
.build/release/speech avatar-motion input.wav --output motion.jsonl --verbose
.build/release/speech avatar-motion input.wav \
--model aufklarer/Audio2Face-3D-v2.3.1-Claire-MLX
मॉडल लिंक
implementation notes
- Three identities are published: James (default) and Claire at v2.3.1 with 169 coefficients, Mark at v2.3 with 301; skin coefficients live in the identity's own geometry basis, so renderers need the matching rig or a retarget projection.
- Two-branch regressor: a trimmed Wav2Vec2 audio encoder blended across transformer layers, plus a windowed-autocorrelation frequency branch, fused through emotion-conditioned strided convolutions.
- Each 8320-sample window of 16 kHz mono audio (hop 4160) emits one frame, conditioned on a 26-value emotion vector — 16 implicit plus 10 explicit values.
- The MLX graph runs the full NVIDIA model forward pass and is parity-checked against an ONNX fixture generated from the official release.