Commit ·
8f3dc06
0
Parent(s):
Duplicate from k2-fsa/OmniVoice
Browse filesCo-authored-by: Han Zhu <zhu-han@users.noreply.huggingface.co>
- .gitattributes +36 -0
- README.md +776 -0
- audio_tokenizer/.gitattributes +35 -0
- audio_tokenizer/LICENSE +43 -0
- audio_tokenizer/README.md +199 -0
- audio_tokenizer/config.json +129 -0
- audio_tokenizer/model.safetensors +3 -0
- audio_tokenizer/preprocessor_config.json +9 -0
- chat_template.jinja +89 -0
- config.json +101 -0
- model.safetensors +3 -0
- tokenizer.json +3 -0
- tokenizer_config.json +23 -0
.gitattributes
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,776 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model:
|
| 3 |
+
- Qwen/Qwen3-0.6B
|
| 4 |
+
language:
|
| 5 |
+
- aae
|
| 6 |
+
- aal
|
| 7 |
+
- aao
|
| 8 |
+
- ab
|
| 9 |
+
- abb
|
| 10 |
+
- abn
|
| 11 |
+
- abr
|
| 12 |
+
- abs
|
| 13 |
+
- abv
|
| 14 |
+
- acm
|
| 15 |
+
- acw
|
| 16 |
+
- acx
|
| 17 |
+
- adf
|
| 18 |
+
- adx
|
| 19 |
+
- ady
|
| 20 |
+
- aeb
|
| 21 |
+
- aec
|
| 22 |
+
- af
|
| 23 |
+
- afb
|
| 24 |
+
- afo
|
| 25 |
+
- ahl
|
| 26 |
+
- ahs
|
| 27 |
+
- ajg
|
| 28 |
+
- aju
|
| 29 |
+
- ala
|
| 30 |
+
- aln
|
| 31 |
+
- alo
|
| 32 |
+
- am
|
| 33 |
+
- amu
|
| 34 |
+
- an
|
| 35 |
+
- anc
|
| 36 |
+
- ank
|
| 37 |
+
- anp
|
| 38 |
+
- anw
|
| 39 |
+
- aom
|
| 40 |
+
- apc
|
| 41 |
+
- apd
|
| 42 |
+
- arb
|
| 43 |
+
- arq
|
| 44 |
+
- ars
|
| 45 |
+
- ary
|
| 46 |
+
- arz
|
| 47 |
+
- as
|
| 48 |
+
- ast
|
| 49 |
+
- avl
|
| 50 |
+
- awo
|
| 51 |
+
- ayl
|
| 52 |
+
- ayp
|
| 53 |
+
- az
|
| 54 |
+
- ba
|
| 55 |
+
- bag
|
| 56 |
+
- bas
|
| 57 |
+
- bax
|
| 58 |
+
- bba
|
| 59 |
+
- bbj
|
| 60 |
+
- bbl
|
| 61 |
+
- bbu
|
| 62 |
+
- bce
|
| 63 |
+
- bci
|
| 64 |
+
- bcs
|
| 65 |
+
- bcy
|
| 66 |
+
- bda
|
| 67 |
+
- bde
|
| 68 |
+
- bdm
|
| 69 |
+
- be
|
| 70 |
+
- beb
|
| 71 |
+
- bew
|
| 72 |
+
- bfd
|
| 73 |
+
- bft
|
| 74 |
+
- bg
|
| 75 |
+
- bgp
|
| 76 |
+
- bhb
|
| 77 |
+
- bhh
|
| 78 |
+
- bho
|
| 79 |
+
- bhp
|
| 80 |
+
- bhr
|
| 81 |
+
- bjj
|
| 82 |
+
- bjk
|
| 83 |
+
- bjn
|
| 84 |
+
- bjt
|
| 85 |
+
- bkh
|
| 86 |
+
- bkm
|
| 87 |
+
- bky
|
| 88 |
+
- bmm
|
| 89 |
+
- bmq
|
| 90 |
+
- bn
|
| 91 |
+
- bnm
|
| 92 |
+
- bnn
|
| 93 |
+
- bns
|
| 94 |
+
- bo
|
| 95 |
+
- bou
|
| 96 |
+
- bqg
|
| 97 |
+
- br
|
| 98 |
+
- bra
|
| 99 |
+
- brh
|
| 100 |
+
- bri
|
| 101 |
+
- brx
|
| 102 |
+
- bs
|
| 103 |
+
- bsh
|
| 104 |
+
- bsj
|
| 105 |
+
- bsk
|
| 106 |
+
- btm
|
| 107 |
+
- btv
|
| 108 |
+
- bug
|
| 109 |
+
- bum
|
| 110 |
+
- buo
|
| 111 |
+
- bux
|
| 112 |
+
- bwr
|
| 113 |
+
- bxf
|
| 114 |
+
- byc
|
| 115 |
+
- bys
|
| 116 |
+
- byv
|
| 117 |
+
- byx
|
| 118 |
+
- bzc
|
| 119 |
+
- bzw
|
| 120 |
+
- ca
|
| 121 |
+
- ccg
|
| 122 |
+
- ceb
|
| 123 |
+
- cen
|
| 124 |
+
- cfa
|
| 125 |
+
- cgg
|
| 126 |
+
- chq
|
| 127 |
+
- cjk
|
| 128 |
+
- ckb
|
| 129 |
+
- ckl
|
| 130 |
+
- ckr
|
| 131 |
+
- cky
|
| 132 |
+
- cnh
|
| 133 |
+
- cpy
|
| 134 |
+
- cs
|
| 135 |
+
- cte
|
| 136 |
+
- ctl
|
| 137 |
+
- cut
|
| 138 |
+
- cux
|
| 139 |
+
- cv
|
| 140 |
+
- cy
|
| 141 |
+
- da
|
| 142 |
+
- dag
|
| 143 |
+
- dar
|
| 144 |
+
- dav
|
| 145 |
+
- dbd
|
| 146 |
+
- dcc
|
| 147 |
+
- de
|
| 148 |
+
- deg
|
| 149 |
+
- dgh
|
| 150 |
+
- dgo
|
| 151 |
+
- dje
|
| 152 |
+
- dmk
|
| 153 |
+
- dml
|
| 154 |
+
- dru
|
| 155 |
+
- dty
|
| 156 |
+
- dua
|
| 157 |
+
- dv
|
| 158 |
+
- dyu
|
| 159 |
+
- dzg
|
| 160 |
+
- ebr
|
| 161 |
+
- ebu
|
| 162 |
+
- ego
|
| 163 |
+
- eiv
|
| 164 |
+
- eko
|
| 165 |
+
- ekr
|
| 166 |
+
- el
|
| 167 |
+
- elm
|
| 168 |
+
- en
|
| 169 |
+
- eo
|
| 170 |
+
- es
|
| 171 |
+
- esu
|
| 172 |
+
- et
|
| 173 |
+
- eto
|
| 174 |
+
- ets
|
| 175 |
+
- etu
|
| 176 |
+
- eu
|
| 177 |
+
- ewo
|
| 178 |
+
- ext
|
| 179 |
+
- eyo
|
| 180 |
+
- fa
|
| 181 |
+
- fan
|
| 182 |
+
- fat
|
| 183 |
+
- ff
|
| 184 |
+
- ffm
|
| 185 |
+
- fi
|
| 186 |
+
- fia
|
| 187 |
+
- fil
|
| 188 |
+
- fip
|
| 189 |
+
- fkk
|
| 190 |
+
- fmp
|
| 191 |
+
- fr
|
| 192 |
+
- fub
|
| 193 |
+
- fuc
|
| 194 |
+
- fue
|
| 195 |
+
- fuf
|
| 196 |
+
- fuh
|
| 197 |
+
- fui
|
| 198 |
+
- fuq
|
| 199 |
+
- fuv
|
| 200 |
+
- fy
|
| 201 |
+
- ga
|
| 202 |
+
- gbm
|
| 203 |
+
- gbr
|
| 204 |
+
- gby
|
| 205 |
+
- gcc
|
| 206 |
+
- gdf
|
| 207 |
+
- gej
|
| 208 |
+
- ges
|
| 209 |
+
- ggg
|
| 210 |
+
- gid
|
| 211 |
+
- gig
|
| 212 |
+
- giz
|
| 213 |
+
- gjk
|
| 214 |
+
- gju
|
| 215 |
+
- gl
|
| 216 |
+
- glw
|
| 217 |
+
- gn
|
| 218 |
+
- gol
|
| 219 |
+
- gom
|
| 220 |
+
- gsl
|
| 221 |
+
- gu
|
| 222 |
+
- gui
|
| 223 |
+
- gur
|
| 224 |
+
- guz
|
| 225 |
+
- gv
|
| 226 |
+
- gwc
|
| 227 |
+
- gwe
|
| 228 |
+
- gwt
|
| 229 |
+
- gya
|
| 230 |
+
- gyz
|
| 231 |
+
- ha
|
| 232 |
+
- hah
|
| 233 |
+
- hao
|
| 234 |
+
- haw
|
| 235 |
+
- haz
|
| 236 |
+
- hbb
|
| 237 |
+
- he
|
| 238 |
+
- hem
|
| 239 |
+
- hi
|
| 240 |
+
- hia
|
| 241 |
+
- hkk
|
| 242 |
+
- hla
|
| 243 |
+
- hno
|
| 244 |
+
- hoj
|
| 245 |
+
- hr
|
| 246 |
+
- hsb
|
| 247 |
+
- ht
|
| 248 |
+
- hu
|
| 249 |
+
- hue
|
| 250 |
+
- hul
|
| 251 |
+
- hux
|
| 252 |
+
- hwo
|
| 253 |
+
- hy
|
| 254 |
+
- hz
|
| 255 |
+
- ia
|
| 256 |
+
- ibb
|
| 257 |
+
- id
|
| 258 |
+
- ida
|
| 259 |
+
- idu
|
| 260 |
+
- ig
|
| 261 |
+
- ijc
|
| 262 |
+
- ijn
|
| 263 |
+
- ik
|
| 264 |
+
- ikw
|
| 265 |
+
- is
|
| 266 |
+
- ish
|
| 267 |
+
- iso
|
| 268 |
+
- it
|
| 269 |
+
- its
|
| 270 |
+
- itw
|
| 271 |
+
- itz
|
| 272 |
+
- ja
|
| 273 |
+
- jal
|
| 274 |
+
- jax
|
| 275 |
+
- jgo
|
| 276 |
+
- jmx
|
| 277 |
+
- jns
|
| 278 |
+
- jqr
|
| 279 |
+
- juk
|
| 280 |
+
- juo
|
| 281 |
+
- jv
|
| 282 |
+
- ka
|
| 283 |
+
- kab
|
| 284 |
+
- kai
|
| 285 |
+
- kaj
|
| 286 |
+
- kam
|
| 287 |
+
- kbd
|
| 288 |
+
- kbl
|
| 289 |
+
- kbt
|
| 290 |
+
- kcq
|
| 291 |
+
- kdh
|
| 292 |
+
- kea
|
| 293 |
+
- keu
|
| 294 |
+
- kfe
|
| 295 |
+
- kfk
|
| 296 |
+
- kfp
|
| 297 |
+
- khg
|
| 298 |
+
- khw
|
| 299 |
+
- kj
|
| 300 |
+
- kjc
|
| 301 |
+
- kjk
|
| 302 |
+
- kk
|
| 303 |
+
- kln
|
| 304 |
+
- kls
|
| 305 |
+
- km
|
| 306 |
+
- kmr
|
| 307 |
+
- kmy
|
| 308 |
+
- kn
|
| 309 |
+
- kna
|
| 310 |
+
- knn
|
| 311 |
+
- ko
|
| 312 |
+
- kol
|
| 313 |
+
- koo
|
| 314 |
+
- kpo
|
| 315 |
+
- kqo
|
| 316 |
+
- ks
|
| 317 |
+
- ksd
|
| 318 |
+
- ksf
|
| 319 |
+
- kto
|
| 320 |
+
- kuh
|
| 321 |
+
- kvx
|
| 322 |
+
- kw
|
| 323 |
+
- kwm
|
| 324 |
+
- kxp
|
| 325 |
+
- ky
|
| 326 |
+
- kyx
|
| 327 |
+
- lag
|
| 328 |
+
- lb
|
| 329 |
+
- lcm
|
| 330 |
+
- ldb
|
| 331 |
+
- lg
|
| 332 |
+
- lij
|
| 333 |
+
- lir
|
| 334 |
+
- lkb
|
| 335 |
+
- lla
|
| 336 |
+
- ln
|
| 337 |
+
- lnu
|
| 338 |
+
- lo
|
| 339 |
+
- loa
|
| 340 |
+
- lrk
|
| 341 |
+
- lss
|
| 342 |
+
- lt
|
| 343 |
+
- ltg
|
| 344 |
+
- lto
|
| 345 |
+
- lua
|
| 346 |
+
- luo
|
| 347 |
+
- lus
|
| 348 |
+
- lv
|
| 349 |
+
- lwg
|
| 350 |
+
- mab
|
| 351 |
+
- maf
|
| 352 |
+
- mai
|
| 353 |
+
- mau
|
| 354 |
+
- max
|
| 355 |
+
- mbo
|
| 356 |
+
- mcf
|
| 357 |
+
- mcn
|
| 358 |
+
- mcx
|
| 359 |
+
- mdd
|
| 360 |
+
- mde
|
| 361 |
+
- mdf
|
| 362 |
+
- mek
|
| 363 |
+
- mer
|
| 364 |
+
- meu
|
| 365 |
+
- mfm
|
| 366 |
+
- mfn
|
| 367 |
+
- mfo
|
| 368 |
+
- mfv
|
| 369 |
+
- mgg
|
| 370 |
+
- mgi
|
| 371 |
+
- mhk
|
| 372 |
+
- mhr
|
| 373 |
+
- mi
|
| 374 |
+
- mig
|
| 375 |
+
- miu
|
| 376 |
+
- mk
|
| 377 |
+
- mkf
|
| 378 |
+
- mki
|
| 379 |
+
- ml
|
| 380 |
+
- mlq
|
| 381 |
+
- mn
|
| 382 |
+
- mne
|
| 383 |
+
- mni
|
| 384 |
+
- mqy
|
| 385 |
+
- mr
|
| 386 |
+
- mrj
|
| 387 |
+
- mrr
|
| 388 |
+
- mrt
|
| 389 |
+
- ms
|
| 390 |
+
- mse
|
| 391 |
+
- msh
|
| 392 |
+
- msw
|
| 393 |
+
- mt
|
| 394 |
+
- mtr
|
| 395 |
+
- mtu
|
| 396 |
+
- mtx
|
| 397 |
+
- mua
|
| 398 |
+
- mug
|
| 399 |
+
- mui
|
| 400 |
+
- mve
|
| 401 |
+
- mvy
|
| 402 |
+
- mxs
|
| 403 |
+
- mxu
|
| 404 |
+
- mxy
|
| 405 |
+
- my
|
| 406 |
+
- myv
|
| 407 |
+
- mzl
|
| 408 |
+
- nal
|
| 409 |
+
- nan
|
| 410 |
+
- nap
|
| 411 |
+
- nb
|
| 412 |
+
- nbh
|
| 413 |
+
- ncf
|
| 414 |
+
- nco
|
| 415 |
+
- ncx
|
| 416 |
+
- ndi
|
| 417 |
+
- ng
|
| 418 |
+
- ngi
|
| 419 |
+
- nhg
|
| 420 |
+
- nhi
|
| 421 |
+
- nhn
|
| 422 |
+
- nhq
|
| 423 |
+
- nja
|
| 424 |
+
- nl
|
| 425 |
+
- nla
|
| 426 |
+
- nlv
|
| 427 |
+
- nmg
|
| 428 |
+
- nmz
|
| 429 |
+
- nn
|
| 430 |
+
- nnh
|
| 431 |
+
- 'no'
|
| 432 |
+
- noe
|
| 433 |
+
- npi
|
| 434 |
+
- nso
|
| 435 |
+
- ny
|
| 436 |
+
- nyu
|
| 437 |
+
- oc
|
| 438 |
+
- odk
|
| 439 |
+
- odu
|
| 440 |
+
- ogo
|
| 441 |
+
- om
|
| 442 |
+
- orc
|
| 443 |
+
- oru
|
| 444 |
+
- ory
|
| 445 |
+
- os
|
| 446 |
+
- pa
|
| 447 |
+
- pbs
|
| 448 |
+
- pbt
|
| 449 |
+
- pbu
|
| 450 |
+
- pcm
|
| 451 |
+
- pex
|
| 452 |
+
- phl
|
| 453 |
+
- phr
|
| 454 |
+
- pip
|
| 455 |
+
- piy
|
| 456 |
+
- pko
|
| 457 |
+
- pl
|
| 458 |
+
- plk
|
| 459 |
+
- plt
|
| 460 |
+
- pmq
|
| 461 |
+
- pms
|
| 462 |
+
- pmy
|
| 463 |
+
- pnb
|
| 464 |
+
- poc
|
| 465 |
+
- poe
|
| 466 |
+
- pow
|
| 467 |
+
- prq
|
| 468 |
+
- ps
|
| 469 |
+
- pst
|
| 470 |
+
- pt
|
| 471 |
+
- pua
|
| 472 |
+
- pwn
|
| 473 |
+
- qug
|
| 474 |
+
- qum
|
| 475 |
+
- qup
|
| 476 |
+
- qur
|
| 477 |
+
- qus
|
| 478 |
+
- quv
|
| 479 |
+
- qux
|
| 480 |
+
- quy
|
| 481 |
+
- qva
|
| 482 |
+
- qvi
|
| 483 |
+
- qvj
|
| 484 |
+
- qvl
|
| 485 |
+
- qwa
|
| 486 |
+
- qws
|
| 487 |
+
- qxa
|
| 488 |
+
- qxp
|
| 489 |
+
- qxt
|
| 490 |
+
- qxu
|
| 491 |
+
- qxw
|
| 492 |
+
- rag
|
| 493 |
+
- rm
|
| 494 |
+
- ro
|
| 495 |
+
- rob
|
| 496 |
+
- rof
|
| 497 |
+
- roo
|
| 498 |
+
- rth
|
| 499 |
+
- ru
|
| 500 |
+
- rup
|
| 501 |
+
- rw
|
| 502 |
+
- sa
|
| 503 |
+
- sah
|
| 504 |
+
- sat
|
| 505 |
+
- sau
|
| 506 |
+
- say
|
| 507 |
+
- sbn
|
| 508 |
+
- sc
|
| 509 |
+
- scl
|
| 510 |
+
- scn
|
| 511 |
+
- sd
|
| 512 |
+
- sei
|
| 513 |
+
- shu
|
| 514 |
+
- si
|
| 515 |
+
- sip
|
| 516 |
+
- siw
|
| 517 |
+
- sjr
|
| 518 |
+
- sk
|
| 519 |
+
- skg
|
| 520 |
+
- skr
|
| 521 |
+
- sl
|
| 522 |
+
- sn
|
| 523 |
+
- snc
|
| 524 |
+
- snk
|
| 525 |
+
- so
|
| 526 |
+
- sol
|
| 527 |
+
- sps
|
| 528 |
+
- sq
|
| 529 |
+
- sr
|
| 530 |
+
- src
|
| 531 |
+
- sro
|
| 532 |
+
- ssi
|
| 533 |
+
- ste
|
| 534 |
+
- sua
|
| 535 |
+
- sv
|
| 536 |
+
- sva
|
| 537 |
+
- sw
|
| 538 |
+
- szy
|
| 539 |
+
- ta
|
| 540 |
+
- tan
|
| 541 |
+
- tar
|
| 542 |
+
- tay
|
| 543 |
+
- tbf
|
| 544 |
+
- tcf
|
| 545 |
+
- tcy
|
| 546 |
+
- tdn
|
| 547 |
+
- tdx
|
| 548 |
+
- te
|
| 549 |
+
- tg
|
| 550 |
+
- tgc
|
| 551 |
+
- th
|
| 552 |
+
- the
|
| 553 |
+
- thq
|
| 554 |
+
- thr
|
| 555 |
+
- thv
|
| 556 |
+
- ti
|
| 557 |
+
- tig
|
| 558 |
+
- tio
|
| 559 |
+
- tk
|
| 560 |
+
- tkg
|
| 561 |
+
- tkt
|
| 562 |
+
- tli
|
| 563 |
+
- tlp
|
| 564 |
+
- tn
|
| 565 |
+
- tok
|
| 566 |
+
- tpl
|
| 567 |
+
- tpz
|
| 568 |
+
- tqp
|
| 569 |
+
- tr
|
| 570 |
+
- trp
|
| 571 |
+
- trq
|
| 572 |
+
- trv
|
| 573 |
+
- trw
|
| 574 |
+
- tt
|
| 575 |
+
- ttj
|
| 576 |
+
- ttr
|
| 577 |
+
- ttu
|
| 578 |
+
- tui
|
| 579 |
+
- tul
|
| 580 |
+
- tuq
|
| 581 |
+
- tuv
|
| 582 |
+
- tuy
|
| 583 |
+
- tvo
|
| 584 |
+
- tvu
|
| 585 |
+
- tw
|
| 586 |
+
- twu
|
| 587 |
+
- txs
|
| 588 |
+
- txy
|
| 589 |
+
- udl
|
| 590 |
+
- ug
|
| 591 |
+
- uk
|
| 592 |
+
- uki
|
| 593 |
+
- umb
|
| 594 |
+
- ur
|
| 595 |
+
- ush
|
| 596 |
+
- uz
|
| 597 |
+
- uzn
|
| 598 |
+
- vai
|
| 599 |
+
- var
|
| 600 |
+
- ver
|
| 601 |
+
- vi
|
| 602 |
+
- vmc
|
| 603 |
+
- vmj
|
| 604 |
+
- vmm
|
| 605 |
+
- vmp
|
| 606 |
+
- vmz
|
| 607 |
+
- vot
|
| 608 |
+
- vro
|
| 609 |
+
- wbl
|
| 610 |
+
- wci
|
| 611 |
+
- weo
|
| 612 |
+
- wes
|
| 613 |
+
- wja
|
| 614 |
+
- wji
|
| 615 |
+
- wo
|
| 616 |
+
- wof
|
| 617 |
+
- xh
|
| 618 |
+
- xhe
|
| 619 |
+
- xka
|
| 620 |
+
- xmf
|
| 621 |
+
- xmv
|
| 622 |
+
- xmw
|
| 623 |
+
- xpe
|
| 624 |
+
- xti
|
| 625 |
+
- xtu
|
| 626 |
+
- yaq
|
| 627 |
+
- yav
|
| 628 |
+
- yay
|
| 629 |
+
- ydd
|
| 630 |
+
- ydg
|
| 631 |
+
- yer
|
| 632 |
+
- 'yes'
|
| 633 |
+
- yi
|
| 634 |
+
- yo
|
| 635 |
+
- yue
|
| 636 |
+
- zga
|
| 637 |
+
- zgh
|
| 638 |
+
- zh
|
| 639 |
+
- zoc
|
| 640 |
+
- zoh
|
| 641 |
+
- zor
|
| 642 |
+
- zpv
|
| 643 |
+
- zpy
|
| 644 |
+
- ztg
|
| 645 |
+
- ztn
|
| 646 |
+
- ztp
|
| 647 |
+
- zts
|
| 648 |
+
- ztu
|
| 649 |
+
- zu
|
| 650 |
+
- zza
|
| 651 |
+
license: apache-2.0
|
| 652 |
+
pipeline_tag: text-to-speech
|
| 653 |
+
tags:
|
| 654 |
+
- zero-shot
|
| 655 |
+
- multilingual
|
| 656 |
+
- voice-cloning
|
| 657 |
+
- voice-design
|
| 658 |
+
---
|
| 659 |
+
|
| 660 |
+
# OmniVoice 🌍
|
| 661 |
+
|
| 662 |
+
<p align="center">
|
| 663 |
+
<img width="200" height="200" alt="OmniVoice" src="https://zhu-han.github.io/omnivoice/pics/omnivoice.jpg" />
|
| 664 |
+
</p>
|
| 665 |
+
|
| 666 |
+
<p align="center">
|
| 667 |
+
<a href="https://huggingface.co/k2-fsa/OmniVoice"><img src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Model-FFD21E" alt="Hugging Face Model"></a>
|
| 668 |
+
|
| 669 |
+
<a href="https://huggingface.co/spaces/k2-fsa/OmniVoice"><img src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Space-blue" alt="Hugging Face Space"></a>
|
| 670 |
+
|
| 671 |
+
<a href="https://huggingface.co/papers/2604.00688"><img src="https://img.shields.io/badge/arXiv-Paper-B31B1B.svg"></a>
|
| 672 |
+
|
| 673 |
+
<a href="https://github.com/k2-fsa/OmniVoice"><img src="https://img.shields.io/badge/GitHub-Code-181717?logo=GitHub" alt="GitHub Code"></a>
|
| 674 |
+
|
| 675 |
+
<a href="https://zhu-han.github.io/omnivoice"><img src="https://img.shields.io/badge/GitHub.io-Demo_Page-blue?logo=GitHub&style=flat-square"></a>
|
| 676 |
+
</p>
|
| 677 |
+
|
| 678 |
+
|
| 679 |
+
OmniVoice is a massively multilingual zero-shot text-to-speech (TTS) model supporting over 600 languages. Built on a novel diffusion language model-style architecture, it delivers high-quality speech with superior inference speed, supporting voice cloning and voice design.
|
| 680 |
+
|
| 681 |
+
- **Paper:** [OmniVoice: Towards Omnilingual Zero-Shot Text-to-Speech with Diffusion Language Models](https://huggingface.co/papers/2604.00688)
|
| 682 |
+
- **Repository:** [GitHub](https://github.com/k2-fsa/OmniVoice)
|
| 683 |
+
- **Demo:** [Hugging Face Space](https://huggingface.co/spaces/k2-fsa/OmniVoice)
|
| 684 |
+
|
| 685 |
+
## Key Features
|
| 686 |
+
|
| 687 |
+
- **600+ Languages Supported**: The broadest language coverage among zero-shot TTS models.
|
| 688 |
+
- **Voice Cloning**: State-of-the-art voice cloning quality from a short reference audio.
|
| 689 |
+
- **Voice Design**: Control voices via assigned speaker attributes (gender, age, pitch, dialect/accent, whisper, etc.).
|
| 690 |
+
- **Fine-grained Control**: Non-verbal symbols (e.g., `[laughter]`) and pronunciation correction via pinyin or phonemes.
|
| 691 |
+
- **Fast Inference**: RTF as low as 0.025 (40x faster than real-time).
|
| 692 |
+
- **Diffusion Language Model-style Architecture**: A clean, streamlined, and scalable design that delivers both quality and speed.
|
| 693 |
+
|
| 694 |
+
## Sample Usage
|
| 695 |
+
|
| 696 |
+
To get started, install the `omnivoice` library:
|
| 697 |
+
|
| 698 |
+
> We recommend using a fresh virtual environment (e.g., `conda`, `venv`, etc.) to avoid conflicts.
|
| 699 |
+
|
| 700 |
+
**Step 1**: Install PyTorch
|
| 701 |
+
|
| 702 |
+
<details>
|
| 703 |
+
<summary>NVIDIA GPU</summary>
|
| 704 |
+
|
| 705 |
+
```bash
|
| 706 |
+
# Install pytorch with your CUDA version, e.g.
|
| 707 |
+
pip install torch==2.8.0+cu128 torchaudio==2.8.0+cu128 --extra-index-url https://download.pytorch.org/whl/cu128
|
| 708 |
+
```
|
| 709 |
+
> See [PyTorch official site](https://pytorch.org/get-started/locally/) for other versions installation.
|
| 710 |
+
|
| 711 |
+
</details>
|
| 712 |
+
|
| 713 |
+
<details>
|
| 714 |
+
<summary>Apple Silicon</summary>
|
| 715 |
+
|
| 716 |
+
```bash
|
| 717 |
+
pip install torch==2.8.0 torchaudio==2.8.0
|
| 718 |
+
```
|
| 719 |
+
|
| 720 |
+
</details>
|
| 721 |
+
|
| 722 |
+
**Step 2**: Install OmniVoice
|
| 723 |
+
|
| 724 |
+
```bash
|
| 725 |
+
pip install omnivoice
|
| 726 |
+
```
|
| 727 |
+
|
| 728 |
+
### Python API
|
| 729 |
+
|
| 730 |
+
You can use OmniVoice for zero-shot voice cloning as follows:
|
| 731 |
+
|
| 732 |
+
```python
|
| 733 |
+
from omnivoice import OmniVoice
|
| 734 |
+
import torch
|
| 735 |
+
import torchaudio
|
| 736 |
+
|
| 737 |
+
# Load the model
|
| 738 |
+
model = OmniVoice.from_pretrained(
|
| 739 |
+
"k2-fsa/OmniVoice",
|
| 740 |
+
device_map="cuda:0",
|
| 741 |
+
dtype=torch.float16
|
| 742 |
+
)
|
| 743 |
+
|
| 744 |
+
# Generate audio
|
| 745 |
+
audio = model.generate(
|
| 746 |
+
text="Hello, this is a test of zero-shot voice cloning.",
|
| 747 |
+
ref_audio="ref.wav",
|
| 748 |
+
ref_text="Transcription of the reference audio.",
|
| 749 |
+
) # audio is a list of `torch.Tensor` with shape (1, T) at 24 kHz.
|
| 750 |
+
|
| 751 |
+
torchaudio.save("out.wav", audio[0], 24000)
|
| 752 |
+
```
|
| 753 |
+
|
| 754 |
+
For more generation modes (e.g., voice design), functions (e.g., non-verbal symbols, pronunciation correction) and comprehensive usage instructions, see our [GitHub Repository](https://github.com/k2-fsa/OmniVoice).
|
| 755 |
+
|
| 756 |
+
|
| 757 |
+
## Discussion & Communication
|
| 758 |
+
|
| 759 |
+
You can directly discuss on [GitHub Issues](https://github.com/k2-fsa/OmniVoice/issues).
|
| 760 |
+
|
| 761 |
+
You can also scan the QR code to join our wechat group or follow our wechat official account.
|
| 762 |
+
|
| 763 |
+
| Wechat Group | Wechat Official Account |
|
| 764 |
+
| ------------ | ----------------------- |
|
| 765 |
+
| | |
|
| 766 |
+
|
| 767 |
+
## Citation
|
| 768 |
+
|
| 769 |
+
```bibtex
|
| 770 |
+
@article{zhu2026omnivoice,
|
| 771 |
+
title={OmniVoice: Towards Omnilingual Zero-Shot Text-to-Speech with Diffusion Language Models},
|
| 772 |
+
author={Zhu, Han and Ye, Lingxuan and Kang, Wei and Yao, Zengwei and Guo, Liyong and Kuang, Fangjun and Han, Zhifeng and Zhuang, Weiji and Lin, Long and Povey, Daniel},
|
| 773 |
+
journal={arXiv preprint arXiv:2604.00688},
|
| 774 |
+
year={2026}
|
| 775 |
+
}
|
| 776 |
+
```
|
audio_tokenizer/.gitattributes
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
audio_tokenizer/LICENSE
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
BOSON HIGGS AUDIO 2 COMMUNITY LICENSE AGREEMENT
|
| 2 |
+
|
| 3 |
+
Boson Higgs Audio 2 Version Release Date: June 20, 2025
|
| 4 |
+
|
| 5 |
+
This License Agreement (the “Agreement”) is entered into by and between Licensee (as defined below) and Boson AI USA, Inc. (“Boson”) and is based upon the Meta Llama 3 Community License Agreement as of April 18, 2024 (the “Meta License Agreement”), which can be found at https://llama.meta.com/llama3/license/. The terms and conditions of the Meta License Agreement are hereby incorporated herein by reference and Unless stated otherwise below, its terms apply. The Higgs Audio 2 model developed by Boson AI USA, Inc. (“Higgs Materials”) is an audio model derived from Meta Llama 3 software and algorithms.
|
| 6 |
+
|
| 7 |
+
“Agreement” means the terms and conditions for use, reproduction, distribution and modification of the Higgs Materials set forth herein and the Meta License Agreement.
|
| 8 |
+
|
| 9 |
+
“Licensee” or “you” means you, or your employer or any other person or entity (if you are entering into this Agreement on such person or entity’s behalf), of the age required under applicable laws, rules or regulations to provide legal consent and that has legal authority to bind your employer or such other person or entity if you are entering into this Agreement on their behalf.
|
| 10 |
+
|
| 11 |
+
“Higgs Audio 2” means the foundational large audio language models and software and algorithms, including machine-learning model code, trained model weights, inference-enabling code, training-enabling code, fine-tuning enabling code and other elements of the foregoing developed by Boson AI distributed at https://github.com/boson-ai/boson-multimodal or otherwise.
|
| 12 |
+
“Higgs Materials” means, collectively, Boson’s proprietary modification of Meta Llama 3 and Documentation (and any portion thereof) made available under this Agreement.
|
| 13 |
+
|
| 14 |
+
“Boson” or “we” means Boson AI USA, Inc.
|
| 15 |
+
|
| 16 |
+
By clicking “I Accept” below or by using or distributing any portion or element of the Higgs Materials, you agree to be bound by this Agreement.
|
| 17 |
+
|
| 18 |
+
1. License Rights and Redistribution.
|
| 19 |
+
a. Grant of Rights. You are granted a non-exclusive, worldwide, non-transferable and royalty-free limited license under Boson’s intellectual property or other rights owned by Boson embodied in the Higgs Materials to use, reproduce, distribute, copy, create derivative works of, and make modifications to the Higgs Materials.
|
| 20 |
+
b. Redistribution and Use.
|
| 21 |
+
i. If you distribute or make available the Higgs Materials (or any derivative works thereof), or a product or service that uses any of them, including another AI model, you shall (A) provide a copy of this Agreement and the of Meta License ’s Llama 3 agreement with any such Higgs Materials; and (B) prominently display “Built with Higgs Materials licensed from Boson AI USA, Inc., Copyright Boson AI USA, Inc., All Rights Reserved and Meta Llama 3 licensed under the Meta Llama 3 Community License, Copyright Meta Platforms, Inc., All Right Reserved". based on Meta Llama 3” on a related website, user interface, blogpost, about page, or product documentation. If you use the Higgs Materials to create, modify, enhance, train, fine tune, or otherwise improve an AI model or similar software, which is distributed or made available, you shall also include “Higgs Audio 2” at the beginning of any such AI model or software name.
|
| 22 |
+
ii. Even if you receive Higgs Materials, or any modifications, enhancements or derivative works thereof, from a Licensee as part of an integrated end user product, then Section 2 of this Agreement will apply to you.
|
| 23 |
+
iii. You must retain in all copies of the Llama Materials that you distribute and as set forth above, include the following attribution notice within a “Notice” text file distributed as a part of such copies:
|
| 24 |
+
“Meta Llama 3 is licensed under the Meta Llama 3 Community License, Copyright © Meta Platforms, Inc. All Rights Reserved.”
|
| 25 |
+
“Boson Higgs Audio 2 is licensed under the Boson Community License, Copyright © Boson AI USA, Inc. All Rights Reserved.”
|
| 26 |
+
iv. Your use of the Higgs Materials must comply with applicable laws and regulations (including trade compliance laws and regulations) and adhere to the Acceptable Use Policy for the Llama Materials (available at https://llama.meta.com/llama3/use-policy), which is hereby incorporated by reference into this Agreement.
|
| 27 |
+
v. You will not use the Higgs Materials or any output or results of the Higgs Materials to improve any other large language model (excluding Boson Higgs Audio 2 or derivative works thereof).
|
| 28 |
+
vi. You hereby acknowledge that Boson is the owner of the Higgs Materials and under no circumstance shall you bring any legal action, claim, charge, demand challenging such ownership rights of Boson.
|
| 29 |
+
|
| 30 |
+
2. Additional Commercial Terms. If the annual active users of the products or services made available by or for Licensee, or Licensee’s affiliates, is greater than 100,000 annual active users in the preceding calendar year, you must request an expanded license from Boson AI, which Boson AI may grant to you in its sole discretion, and you are not authorized to exercise any of the rights under this Agreement unless or until Boson AI otherwise expressly grants you such rights.
|
| 31 |
+
|
| 32 |
+
3. Disclaimer of Warranty. UNLESS REQUIRED BY APPLICABLE LAW, THE Higgs Materials AND ANY OUTPUT AND RESULTS THEREFROM ARE PROVIDED ON AN “AS IS” BASIS, WITH ALL FAULTS, WITHOUT WARRANTIES OF ANY KIND EXPRESS, IMPLIED, BASED UPON CUSTOM AND USAGE OR COURSE OF DEALING, AND BOSON AI DISCLAIMS ALL WARRANTIES OF ANY KIND, BOTH EXPRESS AND IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE FOR DETERMINING THE APPROPRIATENESS OF USING OR REDISTRIBUTING THE HIGGS MATERIALS AND ASSUME ANY AND ALL RISKS ASSOCIATED WITH YOUR USE OF THE HIGGS MATERIALS AND ANY OUTPUT AND RESULTS.
|
| 33 |
+
|
| 34 |
+
4. Limitation of Liability. IN NO EVENT WILL BOSON AI OR ITS AFFILIATES BE LIABLE UNDER ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, TORT, NEGLIGENCE, PRODUCTS LIABILITY, OR OTHERWISE, ARISING OUT OF THIS AGREEMENT, FOR ANY LOST PROFITS OR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL, EXEMPLARY OR PUNITIVE DAMAGES, EVEN IF BOSON, META OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF ANY OF THE FOREGOING.
|
| 35 |
+
|
| 36 |
+
5. Intellectual Property.
|
| 37 |
+
a. No trademark licenses are granted under this Agreement, or in connection with the Higgs Materials., nNeither Boson nor Licensee may use any name or mark owned by, or associated with, the other party hereto or any of its affiliates, except as required for reasonable and customary use in describing and redistributing the Higgs Materials or as set forth in this Section 5(a). Boson hereby grants you a license to use “Higgs Audio 2” (the “Mark”) solely as required to comply with the last sentence of Section 1.b.i. All goodwill arising out of your use of the Mark will inure to the benefit of Meta and Boson AI.
|
| 38 |
+
b. Subject to Boson’s ownership of the Higgs Materials and derivatives made by or for Boson AI, with respect to any derivative works and modifications of the Higgs Materials that are made by you, as between you and Boson AI, you are and will be the owner of such derivative works and modifications.
|
| 39 |
+
c. If you institute litigation or other proceedings against Boson AI, Meta or any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Higgs Materials or Boson Higgs Audio 2 outputs or results, or any portion thereof any of the foregoing, constitutes infringement of the intellectual property or other rights owned or licensable by you, then any licenses granted to you hereunder this Agreement shall immediately terminate as of the date such litigation or claim is filed or instituted. You will indemnify and hold harmless Boson AI from and against any claim, charge, demand, cause of action by any third party arising out of or related to your use or distribution of the Higgs Materials.
|
| 40 |
+
|
| 41 |
+
6. Term and Termination. The term of this Agreement will commence upon your acceptance of this Agreement or access to the Higgs Materials and will continue in full force and effect until terminated in accordance with the terms and conditions herein. Boson AI may terminate this Agreement if you are in breach of any term or condition of this Agreement by providing you with written notice. Upon your receipt of written notice of termination of this Agreement, you shall delete the Higgs Materials from any computer, server or IT device and cease use of the Higgs Materials in all respects. Sections 1(b)(vi), 3, 4 and 7 shall survive the termination of this Agreement.
|
| 42 |
+
|
| 43 |
+
7. Governing Law and Jurisdiction. This Agreement will be governed and construed under the laws of the State of California without regard to choice of law principles, and the UN Convention on Contracts for the International Sale of Goods does not apply to this Agreement. The federal courts in the Northern District of California and the state courts in Santa Clara County, California shall have exclusive jurisdiction of any dispute arising out of this Agreement.
|
audio_tokenizer/README.md
ADDED
|
@@ -0,0 +1,199 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
tags: []
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# Model Card for Model ID
|
| 7 |
+
|
| 8 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
## Model Details
|
| 13 |
+
|
| 14 |
+
### Model Description
|
| 15 |
+
|
| 16 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 17 |
+
|
| 18 |
+
This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
|
| 19 |
+
|
| 20 |
+
- **Developed by:** [More Information Needed]
|
| 21 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 22 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 23 |
+
- **Model type:** [More Information Needed]
|
| 24 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 25 |
+
- **License:** [More Information Needed]
|
| 26 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 27 |
+
|
| 28 |
+
### Model Sources [optional]
|
| 29 |
+
|
| 30 |
+
<!-- Provide the basic links for the model. -->
|
| 31 |
+
|
| 32 |
+
- **Repository:** [More Information Needed]
|
| 33 |
+
- **Paper [optional]:** [More Information Needed]
|
| 34 |
+
- **Demo [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
## Uses
|
| 37 |
+
|
| 38 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 39 |
+
|
| 40 |
+
### Direct Use
|
| 41 |
+
|
| 42 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 43 |
+
|
| 44 |
+
[More Information Needed]
|
| 45 |
+
|
| 46 |
+
### Downstream Use [optional]
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Out-of-Scope Use
|
| 53 |
+
|
| 54 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
## Bias, Risks, and Limitations
|
| 59 |
+
|
| 60 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
### Recommendations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 67 |
+
|
| 68 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 69 |
+
|
| 70 |
+
## How to Get Started with the Model
|
| 71 |
+
|
| 72 |
+
Use the code below to get started with the model.
|
| 73 |
+
|
| 74 |
+
[More Information Needed]
|
| 75 |
+
|
| 76 |
+
## Training Details
|
| 77 |
+
|
| 78 |
+
### Training Data
|
| 79 |
+
|
| 80 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
### Training Procedure
|
| 85 |
+
|
| 86 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 87 |
+
|
| 88 |
+
#### Preprocessing [optional]
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
#### Training Hyperparameters
|
| 94 |
+
|
| 95 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 96 |
+
|
| 97 |
+
#### Speeds, Sizes, Times [optional]
|
| 98 |
+
|
| 99 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 100 |
+
|
| 101 |
+
[More Information Needed]
|
| 102 |
+
|
| 103 |
+
## Evaluation
|
| 104 |
+
|
| 105 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 106 |
+
|
| 107 |
+
### Testing Data, Factors & Metrics
|
| 108 |
+
|
| 109 |
+
#### Testing Data
|
| 110 |
+
|
| 111 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 112 |
+
|
| 113 |
+
[More Information Needed]
|
| 114 |
+
|
| 115 |
+
#### Factors
|
| 116 |
+
|
| 117 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Metrics
|
| 122 |
+
|
| 123 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
### Results
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
#### Summary
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
|
| 135 |
+
## Model Examination [optional]
|
| 136 |
+
|
| 137 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 138 |
+
|
| 139 |
+
[More Information Needed]
|
| 140 |
+
|
| 141 |
+
## Environmental Impact
|
| 142 |
+
|
| 143 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 144 |
+
|
| 145 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 146 |
+
|
| 147 |
+
- **Hardware Type:** [More Information Needed]
|
| 148 |
+
- **Hours used:** [More Information Needed]
|
| 149 |
+
- **Cloud Provider:** [More Information Needed]
|
| 150 |
+
- **Compute Region:** [More Information Needed]
|
| 151 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 152 |
+
|
| 153 |
+
## Technical Specifications [optional]
|
| 154 |
+
|
| 155 |
+
### Model Architecture and Objective
|
| 156 |
+
|
| 157 |
+
[More Information Needed]
|
| 158 |
+
|
| 159 |
+
### Compute Infrastructure
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
#### Hardware
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Software
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
## Citation [optional]
|
| 172 |
+
|
| 173 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 174 |
+
|
| 175 |
+
**BibTeX:**
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
**APA:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
## Glossary [optional]
|
| 184 |
+
|
| 185 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## More Information [optional]
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## Model Card Authors [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Contact
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
audio_tokenizer/config.json
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"acoustic_model_config": {
|
| 3 |
+
"codebook_dim": 8,
|
| 4 |
+
"codebook_loss_weight": 1.0,
|
| 5 |
+
"codebook_size": 1024,
|
| 6 |
+
"commitment_loss_weight": 0.25,
|
| 7 |
+
"decoder_hidden_size": 1024,
|
| 8 |
+
"downsampling_ratios": [
|
| 9 |
+
8,
|
| 10 |
+
5,
|
| 11 |
+
4,
|
| 12 |
+
2,
|
| 13 |
+
3
|
| 14 |
+
],
|
| 15 |
+
"encoder_hidden_size": 64,
|
| 16 |
+
"hidden_size": 256,
|
| 17 |
+
"hop_length": 960,
|
| 18 |
+
"model_type": "dac",
|
| 19 |
+
"n_codebooks": 9,
|
| 20 |
+
"quantizer_dropout": 0,
|
| 21 |
+
"sampling_rate": 16000,
|
| 22 |
+
"upsampling_ratios": [
|
| 23 |
+
8,
|
| 24 |
+
5,
|
| 25 |
+
4,
|
| 26 |
+
2,
|
| 27 |
+
3
|
| 28 |
+
]
|
| 29 |
+
},
|
| 30 |
+
"architectures": [
|
| 31 |
+
"HiggsAudioV2TokenizerModel"
|
| 32 |
+
],
|
| 33 |
+
"block_dilations": [
|
| 34 |
+
1,
|
| 35 |
+
1
|
| 36 |
+
],
|
| 37 |
+
"channel_ratios": [
|
| 38 |
+
1,
|
| 39 |
+
1
|
| 40 |
+
],
|
| 41 |
+
"codebook_dim": 64,
|
| 42 |
+
"codebook_size": 1024,
|
| 43 |
+
"downsample_factor": 320,
|
| 44 |
+
"dtype": "float32",
|
| 45 |
+
"initializer_range": 0.02,
|
| 46 |
+
"kernel_size": 3,
|
| 47 |
+
"model_type": "higgs_audio_v2_tokenizer",
|
| 48 |
+
"sample_rate": 24000,
|
| 49 |
+
"semantic_model_config": {
|
| 50 |
+
"activation_dropout": 0.1,
|
| 51 |
+
"apply_spec_augment": true,
|
| 52 |
+
"attention_dropout": 0.1,
|
| 53 |
+
"bos_token_id": 1,
|
| 54 |
+
"classifier_proj_size": 256,
|
| 55 |
+
"conv_bias": false,
|
| 56 |
+
"conv_dim": [
|
| 57 |
+
512,
|
| 58 |
+
512,
|
| 59 |
+
512,
|
| 60 |
+
512,
|
| 61 |
+
512,
|
| 62 |
+
512,
|
| 63 |
+
512
|
| 64 |
+
],
|
| 65 |
+
"conv_kernel": [
|
| 66 |
+
10,
|
| 67 |
+
3,
|
| 68 |
+
3,
|
| 69 |
+
3,
|
| 70 |
+
3,
|
| 71 |
+
2,
|
| 72 |
+
2
|
| 73 |
+
],
|
| 74 |
+
"conv_pos_batch_norm": false,
|
| 75 |
+
"conv_stride": [
|
| 76 |
+
5,
|
| 77 |
+
2,
|
| 78 |
+
2,
|
| 79 |
+
2,
|
| 80 |
+
2,
|
| 81 |
+
2,
|
| 82 |
+
2
|
| 83 |
+
],
|
| 84 |
+
"ctc_loss_reduction": "sum",
|
| 85 |
+
"ctc_zero_infinity": false,
|
| 86 |
+
"do_stable_layer_norm": false,
|
| 87 |
+
"eos_token_id": 2,
|
| 88 |
+
"feat_extract_activation": "gelu",
|
| 89 |
+
"feat_extract_norm": "group",
|
| 90 |
+
"feat_proj_dropout": 0.0,
|
| 91 |
+
"feat_proj_layer_norm": true,
|
| 92 |
+
"final_dropout": 0.1,
|
| 93 |
+
"hidden_act": "gelu",
|
| 94 |
+
"hidden_dropout": 0.1,
|
| 95 |
+
"hidden_size": 768,
|
| 96 |
+
"initializer_range": 0.02,
|
| 97 |
+
"intermediate_size": 3072,
|
| 98 |
+
"layer_norm_eps": 1e-05,
|
| 99 |
+
"layerdrop": 0.1,
|
| 100 |
+
"mask_feature_length": 10,
|
| 101 |
+
"mask_feature_min_masks": 0,
|
| 102 |
+
"mask_feature_prob": 0.0,
|
| 103 |
+
"mask_time_length": 10,
|
| 104 |
+
"mask_time_min_masks": 2,
|
| 105 |
+
"mask_time_prob": 0.0,
|
| 106 |
+
"model_type": "hubert",
|
| 107 |
+
"num_attention_heads": 12,
|
| 108 |
+
"num_conv_pos_embedding_groups": 16,
|
| 109 |
+
"num_conv_pos_embeddings": 128,
|
| 110 |
+
"num_feat_extract_layers": 7,
|
| 111 |
+
"num_hidden_layers": 12,
|
| 112 |
+
"pad_token_id": 0,
|
| 113 |
+
"use_weighted_layer_sum": false,
|
| 114 |
+
"vocab_size": 32
|
| 115 |
+
},
|
| 116 |
+
"semantic_sample_rate": 16000,
|
| 117 |
+
"strides": [
|
| 118 |
+
1,
|
| 119 |
+
1
|
| 120 |
+
],
|
| 121 |
+
"target_bandwidths": [
|
| 122 |
+
0.5,
|
| 123 |
+
1,
|
| 124 |
+
1.5,
|
| 125 |
+
2
|
| 126 |
+
],
|
| 127 |
+
"transformers_version": "5.3.0.dev0",
|
| 128 |
+
"unit_kernel_size": 3
|
| 129 |
+
}
|
audio_tokenizer/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fe7c5e8785e0a05833e1bfc3e002ec7f55af21e306b2e7154a448c1f54ccfb0d
|
| 3 |
+
size 805665628
|
audio_tokenizer/preprocessor_config.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"feature_extractor_type": "DacFeatureExtractor",
|
| 3 |
+
"feature_size": 1,
|
| 4 |
+
"hop_length": 960,
|
| 5 |
+
"padding_side": "right",
|
| 6 |
+
"padding_value": 0.0,
|
| 7 |
+
"return_attention_mask": true,
|
| 8 |
+
"sampling_rate": 24000
|
| 9 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{{- messages[0].content + '\n\n' }}
|
| 5 |
+
{%- endif %}
|
| 6 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 7 |
+
{%- for tool in tools %}
|
| 8 |
+
{{- "\n" }}
|
| 9 |
+
{{- tool | tojson }}
|
| 10 |
+
{%- endfor %}
|
| 11 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 12 |
+
{%- else %}
|
| 13 |
+
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 18 |
+
{%- for message in messages[::-1] %}
|
| 19 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 20 |
+
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
| 21 |
+
{%- set ns.multi_step_tool = false %}
|
| 22 |
+
{%- set ns.last_query_index = index %}
|
| 23 |
+
{%- endif %}
|
| 24 |
+
{%- endfor %}
|
| 25 |
+
{%- for message in messages %}
|
| 26 |
+
{%- if message.content is string %}
|
| 27 |
+
{%- set content = message.content %}
|
| 28 |
+
{%- else %}
|
| 29 |
+
{%- set content = '' %}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 32 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 33 |
+
{%- elif message.role == "assistant" %}
|
| 34 |
+
{%- set reasoning_content = '' %}
|
| 35 |
+
{%- if message.reasoning_content is string %}
|
| 36 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 37 |
+
{%- else %}
|
| 38 |
+
{%- if '</think>' in content %}
|
| 39 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 40 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 44 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 45 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 46 |
+
{%- else %}
|
| 47 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 48 |
+
{%- endif %}
|
| 49 |
+
{%- else %}
|
| 50 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 51 |
+
{%- endif %}
|
| 52 |
+
{%- if message.tool_calls %}
|
| 53 |
+
{%- for tool_call in message.tool_calls %}
|
| 54 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 55 |
+
{{- '\n' }}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- if tool_call.function %}
|
| 58 |
+
{%- set tool_call = tool_call.function %}
|
| 59 |
+
{%- endif %}
|
| 60 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 61 |
+
{{- tool_call.name }}
|
| 62 |
+
{{- '", "arguments": ' }}
|
| 63 |
+
{%- if tool_call.arguments is string %}
|
| 64 |
+
{{- tool_call.arguments }}
|
| 65 |
+
{%- else %}
|
| 66 |
+
{{- tool_call.arguments | tojson }}
|
| 67 |
+
{%- endif %}
|
| 68 |
+
{{- '}\n</tool_call>' }}
|
| 69 |
+
{%- endfor %}
|
| 70 |
+
{%- endif %}
|
| 71 |
+
{{- '<|im_end|>\n' }}
|
| 72 |
+
{%- elif message.role == "tool" %}
|
| 73 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 74 |
+
{{- '<|im_start|>user' }}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{{- '\n<tool_response>\n' }}
|
| 77 |
+
{{- content }}
|
| 78 |
+
{{- '\n</tool_response>' }}
|
| 79 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 80 |
+
{{- '<|im_end|>\n' }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endif %}
|
| 83 |
+
{%- endfor %}
|
| 84 |
+
{%- if add_generation_prompt %}
|
| 85 |
+
{{- '<|im_start|>assistant\n' }}
|
| 86 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 87 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 88 |
+
{%- endif %}
|
| 89 |
+
{%- endif %}
|
config.json
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"OmniVoice"
|
| 4 |
+
],
|
| 5 |
+
"audio_codebook_weights": [
|
| 6 |
+
8,
|
| 7 |
+
8,
|
| 8 |
+
6,
|
| 9 |
+
6,
|
| 10 |
+
4,
|
| 11 |
+
4,
|
| 12 |
+
2,
|
| 13 |
+
2
|
| 14 |
+
],
|
| 15 |
+
"audio_mask_id": 1024,
|
| 16 |
+
"audio_vocab_size": 1025,
|
| 17 |
+
"bos_token_id": null,
|
| 18 |
+
"dtype": "float32",
|
| 19 |
+
"eos_token_id": 151645,
|
| 20 |
+
"llm_config": {
|
| 21 |
+
"_name_or_path": "",
|
| 22 |
+
"architectures": [
|
| 23 |
+
"Qwen3ForCausalLM"
|
| 24 |
+
],
|
| 25 |
+
"attention_bias": false,
|
| 26 |
+
"attention_dropout": 0.0,
|
| 27 |
+
"bos_token_id": 151643,
|
| 28 |
+
"chunk_size_feed_forward": 0,
|
| 29 |
+
"dtype": "float32",
|
| 30 |
+
"eos_token_id": 151645,
|
| 31 |
+
"head_dim": 128,
|
| 32 |
+
"hidden_act": "silu",
|
| 33 |
+
"hidden_size": 1024,
|
| 34 |
+
"id2label": {
|
| 35 |
+
"0": "LABEL_0",
|
| 36 |
+
"1": "LABEL_1"
|
| 37 |
+
},
|
| 38 |
+
"initializer_range": 0.02,
|
| 39 |
+
"intermediate_size": 3072,
|
| 40 |
+
"is_encoder_decoder": false,
|
| 41 |
+
"label2id": {
|
| 42 |
+
"LABEL_0": 0,
|
| 43 |
+
"LABEL_1": 1
|
| 44 |
+
},
|
| 45 |
+
"layer_types": [
|
| 46 |
+
"full_attention",
|
| 47 |
+
"full_attention",
|
| 48 |
+
"full_attention",
|
| 49 |
+
"full_attention",
|
| 50 |
+
"full_attention",
|
| 51 |
+
"full_attention",
|
| 52 |
+
"full_attention",
|
| 53 |
+
"full_attention",
|
| 54 |
+
"full_attention",
|
| 55 |
+
"full_attention",
|
| 56 |
+
"full_attention",
|
| 57 |
+
"full_attention",
|
| 58 |
+
"full_attention",
|
| 59 |
+
"full_attention",
|
| 60 |
+
"full_attention",
|
| 61 |
+
"full_attention",
|
| 62 |
+
"full_attention",
|
| 63 |
+
"full_attention",
|
| 64 |
+
"full_attention",
|
| 65 |
+
"full_attention",
|
| 66 |
+
"full_attention",
|
| 67 |
+
"full_attention",
|
| 68 |
+
"full_attention",
|
| 69 |
+
"full_attention",
|
| 70 |
+
"full_attention",
|
| 71 |
+
"full_attention",
|
| 72 |
+
"full_attention",
|
| 73 |
+
"full_attention"
|
| 74 |
+
],
|
| 75 |
+
"max_position_embeddings": 40960,
|
| 76 |
+
"max_window_layers": 28,
|
| 77 |
+
"model_type": "qwen3",
|
| 78 |
+
"num_attention_heads": 16,
|
| 79 |
+
"num_hidden_layers": 28,
|
| 80 |
+
"num_key_value_heads": 8,
|
| 81 |
+
"output_attentions": false,
|
| 82 |
+
"output_hidden_states": false,
|
| 83 |
+
"pad_token_id": null,
|
| 84 |
+
"problem_type": null,
|
| 85 |
+
"return_dict": true,
|
| 86 |
+
"rms_norm_eps": 1e-06,
|
| 87 |
+
"rope_parameters": {
|
| 88 |
+
"rope_theta": 1000000,
|
| 89 |
+
"rope_type": "default"
|
| 90 |
+
},
|
| 91 |
+
"sliding_window": null,
|
| 92 |
+
"tie_word_embeddings": true,
|
| 93 |
+
"use_cache": true,
|
| 94 |
+
"use_sliding_window": false,
|
| 95 |
+
"vocab_size": 151676
|
| 96 |
+
},
|
| 97 |
+
"model_type": "omnivoice",
|
| 98 |
+
"num_audio_codebook": 8,
|
| 99 |
+
"pad_token_id": 151643,
|
| 100 |
+
"transformers_version": "5.3.0"
|
| 101 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:730839316de585f4c8298ec0e1712efc10fb19c6fa4e36eb741cb8d51ebcf6aa
|
| 3 |
+
size 2450344112
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:408f669b7e2b045fdf54201d815bd364e6667dbd845115da81239c40bc6dcfd1
|
| 3 |
+
size 11423986
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"extra_special_tokens": [
|
| 9 |
+
"<|denoise|>",
|
| 10 |
+
"<|lang_start|>",
|
| 11 |
+
"<|lang_end|>",
|
| 12 |
+
"<|instruct_start|>",
|
| 13 |
+
"<|instruct_end|>",
|
| 14 |
+
"<|text_start|>",
|
| 15 |
+
"<|text_end|>"
|
| 16 |
+
],
|
| 17 |
+
"is_local": true,
|
| 18 |
+
"model_max_length": 131072,
|
| 19 |
+
"pad_token": "<|endoftext|>",
|
| 20 |
+
"split_special_tokens": false,
|
| 21 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 22 |
+
"unk_token": null
|
| 23 |
+
}
|