Luigi commited on
Commit
b0143c1
·
verified ·
1 Parent(s): 8009cac

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
README.md ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model: microsoft/VibeVoice-ASR-BitNet
4
+ tags:
5
+ - litert
6
+ - tflite
7
+ - bitnet
8
+ - ternary
9
+ - automatic-speech-recognition
10
+ - on-device
11
+ - android
12
+ language: [en, zh, fr, it, ko, pt, vi]
13
+ library_name: litert
14
+ pipeline_tag: automatic-speech-recognition
15
+ ---
16
+
17
+ # VibeVoice-ASR-BitNet — LiteRT export
18
+
19
+ LiteRT (TFLite) conversion of [microsoft/VibeVoice-ASR-BitNet](https://huggingface.co/microsoft/VibeVoice-ASR-BitNet),
20
+ so the model runs on Android and Linux with **no ggml / llama.cpp dependency**.
21
+
22
+ The decoder is ternary (BitNet I2_S). LiteRT has no ternary kernel, and a normal
23
+ export turns it into an int8 matmul — keeping the *values*, discarding the
24
+ *packing*. Packing is the performance: batch-1 decode is memory-bandwidth-bound, so
25
+ a 1.31 B-parameter decoder moves ~328 MB per token at 2 bits versus ~1310 MB at
26
+ int8. These files keep the 2-bit packing, and the runtime consumes it through a
27
+ **custom op**.
28
+
29
+ Engine, kernel and export scripts:
30
+ [vieenrose/LiteRT · samples/asr/vibevoice](https://github.com/vieenrose/LiteRT/tree/vibevoice-ternary/litert/samples/asr/vibevoice)
31
+
32
+ ## Contents
33
+
34
+ | file | what it is |
35
+ |---|---|
36
+ | `vibe_front_10s_q8.tflite` | audio front end — both tokenizer encoders + connectors, summed, per-channel int8, fixed 10 s window @ 24 kHz |
37
+ | `decoder_28L_512_c.tflite` | 28-layer decode step, ctx 512, one token per pass |
38
+ | `prefill_512_t16_c.tflite` | same but 16 tokens per pass, for prompt ingestion |
39
+ | `head_q8.tflite` | output norm + LM head, per-channel int8, weights baked in |
40
+ | `weights/dec_w*.bin` | packed ternary weights + per-row scales, bound at runtime |
41
+ | `dec_28L_manifest.txt` | input order for the decoder graphs |
42
+ | `embd_table.bin` | Q6_K token embedding table, dequantized one row at a time on the host |
43
+ | `vocab.json` | for byte-level BPE detokenization |
44
+
45
+ The decoder's weights ship **outside** the graph because LiteRT's dispatcher will
46
+ not hand constant tensors to a custom kernel; the head's are baked in because it
47
+ uses no custom op. Weights are mmap'd at load, so they stay clean file-backed pages.
48
+
49
+ ## Measured
50
+
51
+ Boox Tab Mini C — Snapdragon 662, Cortex-A73, **ARMv8.0 without dotprod**, roughly
52
+ worst case for int8 SIMD. Back to back against the ggml build of the same model:
53
+
54
+ | | this export | ggml (`asr_infer`) |
55
+ |---|---|---|
56
+ | decode | **123.5 ms/token** | 123.1 |
57
+ | prefill (T=16) | **68 ms/token** | — |
58
+ | peak RSS | **786 MB** | 1297 MB |
59
+ | peak RssAnon | **241 MB** | 507 MB |
60
+
61
+ Parity on speed at **half the unevictable memory**, which is the figure that
62
+ decides whether an Android app survives memory pressure.
63
+
64
+ ## Fidelity
65
+
66
+ | stage | vs reference | note |
67
+ |---|---|---|
68
+ | audio front end | cosine **0.992** | vs f32; the shipped I8_S ggml build scores 0.958 |
69
+ | 28-layer decoder | cosine **0.994938** | vs a dense f32 reference, real embedding input |
70
+ | LM head | cosine **0.999421** | vs f32 |
71
+ | ternary GEMM | **bit-exact** | vs its scalar reference, every shape and thread count |
72
+
73
+ The int8 front end is *more* accurate than the ggml build it replaces, because
74
+ per-channel scales beat the single per-tensor scale I8_S uses.
75
+
76
+ ## Caveats
77
+
78
+ * The encoder window is **fixed at 10 s**; longer audio must be windowed by the
79
+ caller. Convolutions are causal, so a window needs left context and no lookahead.
80
+ * The decoder graphs are **context-specific** — a ctx=128 prefill cannot be paired
81
+ with a ctx=512 decode.
82
+ * The **chat template is mandatory**. Feeding audio features without the surrounding
83
+ system/user/assistant turns produces fluent nonsense rather than a transcript.
84
+ * Transcript quality has been spot-checked, not benchmarked. WER against the
85
+ reference implementation is not yet measured.
dec_28L_manifest.txt ADDED
@@ -0,0 +1,282 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ dec_x.bin
2
+ dec_pos.bin
3
+ dec_w000.bin
4
+ dec_w001.bin
5
+ dec_w002.bin
6
+ dec_w003.bin
7
+ dec_w004.bin
8
+ dec_w005.bin
9
+ dec_w006.bin
10
+ dec_w007.bin
11
+ dec_w008.bin
12
+ dec_w009.bin
13
+ dec_w010.bin
14
+ dec_w011.bin
15
+ dec_w012.bin
16
+ dec_w013.bin
17
+ dec_w014.bin
18
+ dec_w015.bin
19
+ dec_w016.bin
20
+ dec_w017.bin
21
+ dec_w018.bin
22
+ dec_w019.bin
23
+ dec_w020.bin
24
+ dec_w021.bin
25
+ dec_w022.bin
26
+ dec_w023.bin
27
+ dec_w024.bin
28
+ dec_w025.bin
29
+ dec_w026.bin
30
+ dec_w027.bin
31
+ dec_w028.bin
32
+ dec_w029.bin
33
+ dec_w030.bin
34
+ dec_w031.bin
35
+ dec_w032.bin
36
+ dec_w033.bin
37
+ dec_w034.bin
38
+ dec_w035.bin
39
+ dec_w036.bin
40
+ dec_w037.bin
41
+ dec_w038.bin
42
+ dec_w039.bin
43
+ dec_w040.bin
44
+ dec_w041.bin
45
+ dec_w042.bin
46
+ dec_w043.bin
47
+ dec_w044.bin
48
+ dec_w045.bin
49
+ dec_w046.bin
50
+ dec_w047.bin
51
+ dec_w048.bin
52
+ dec_w049.bin
53
+ dec_w050.bin
54
+ dec_w051.bin
55
+ dec_w052.bin
56
+ dec_w053.bin
57
+ dec_w054.bin
58
+ dec_w055.bin
59
+ dec_w056.bin
60
+ dec_w057.bin
61
+ dec_w058.bin
62
+ dec_w059.bin
63
+ dec_w060.bin
64
+ dec_w061.bin
65
+ dec_w062.bin
66
+ dec_w063.bin
67
+ dec_w064.bin
68
+ dec_w065.bin
69
+ dec_w066.bin
70
+ dec_w067.bin
71
+ dec_w068.bin
72
+ dec_w069.bin
73
+ dec_w070.bin
74
+ dec_w071.bin
75
+ dec_w072.bin
76
+ dec_w073.bin
77
+ dec_w074.bin
78
+ dec_w075.bin
79
+ dec_w076.bin
80
+ dec_w077.bin
81
+ dec_w078.bin
82
+ dec_w079.bin
83
+ dec_w080.bin
84
+ dec_w081.bin
85
+ dec_w082.bin
86
+ dec_w083.bin
87
+ dec_w084.bin
88
+ dec_w085.bin
89
+ dec_w086.bin
90
+ dec_w087.bin
91
+ dec_w088.bin
92
+ dec_w089.bin
93
+ dec_w090.bin
94
+ dec_w091.bin
95
+ dec_w092.bin
96
+ dec_w093.bin
97
+ dec_w094.bin
98
+ dec_w095.bin
99
+ dec_w096.bin
100
+ dec_w097.bin
101
+ dec_w098.bin
102
+ dec_w099.bin
103
+ dec_w100.bin
104
+ dec_w101.bin
105
+ dec_w102.bin
106
+ dec_w103.bin
107
+ dec_w104.bin
108
+ dec_w105.bin
109
+ dec_w106.bin
110
+ dec_w107.bin
111
+ dec_w108.bin
112
+ dec_w109.bin
113
+ dec_w110.bin
114
+ dec_w111.bin
115
+ dec_w112.bin
116
+ dec_w113.bin
117
+ dec_w114.bin
118
+ dec_w115.bin
119
+ dec_w116.bin
120
+ dec_w117.bin
121
+ dec_w118.bin
122
+ dec_w119.bin
123
+ dec_w120.bin
124
+ dec_w121.bin
125
+ dec_w122.bin
126
+ dec_w123.bin
127
+ dec_w124.bin
128
+ dec_w125.bin
129
+ dec_w126.bin
130
+ dec_w127.bin
131
+ dec_w128.bin
132
+ dec_w129.bin
133
+ dec_w130.bin
134
+ dec_w131.bin
135
+ dec_w132.bin
136
+ dec_w133.bin
137
+ dec_w134.bin
138
+ dec_w135.bin
139
+ dec_w136.bin
140
+ dec_w137.bin
141
+ dec_w138.bin
142
+ dec_w139.bin
143
+ dec_w140.bin
144
+ dec_w141.bin
145
+ dec_w142.bin
146
+ dec_w143.bin
147
+ dec_w144.bin
148
+ dec_w145.bin
149
+ dec_w146.bin
150
+ dec_w147.bin
151
+ dec_w148.bin
152
+ dec_w149.bin
153
+ dec_w150.bin
154
+ dec_w151.bin
155
+ dec_w152.bin
156
+ dec_w153.bin
157
+ dec_w154.bin
158
+ dec_w155.bin
159
+ dec_w156.bin
160
+ dec_w157.bin
161
+ dec_w158.bin
162
+ dec_w159.bin
163
+ dec_w160.bin
164
+ dec_w161.bin
165
+ dec_w162.bin
166
+ dec_w163.bin
167
+ dec_w164.bin
168
+ dec_w165.bin
169
+ dec_w166.bin
170
+ dec_w167.bin
171
+ dec_w168.bin
172
+ dec_w169.bin
173
+ dec_w170.bin
174
+ dec_w171.bin
175
+ dec_w172.bin
176
+ dec_w173.bin
177
+ dec_w174.bin
178
+ dec_w175.bin
179
+ dec_w176.bin
180
+ dec_w177.bin
181
+ dec_w178.bin
182
+ dec_w179.bin
183
+ dec_w180.bin
184
+ dec_w181.bin
185
+ dec_w182.bin
186
+ dec_w183.bin
187
+ dec_w184.bin
188
+ dec_w185.bin
189
+ dec_w186.bin
190
+ dec_w187.bin
191
+ dec_w188.bin
192
+ dec_w189.bin
193
+ dec_w190.bin
194
+ dec_w191.bin
195
+ dec_w192.bin
196
+ dec_w193.bin
197
+ dec_w194.bin
198
+ dec_w195.bin
199
+ dec_w196.bin
200
+ dec_w197.bin
201
+ dec_w198.bin
202
+ dec_w199.bin
203
+ dec_w200.bin
204
+ dec_w201.bin
205
+ dec_w202.bin
206
+ dec_w203.bin
207
+ dec_w204.bin
208
+ dec_w205.bin
209
+ dec_w206.bin
210
+ dec_w207.bin
211
+ dec_w208.bin
212
+ dec_w209.bin
213
+ dec_w210.bin
214
+ dec_w211.bin
215
+ dec_w212.bin
216
+ dec_w213.bin
217
+ dec_w214.bin
218
+ dec_w215.bin
219
+ dec_w216.bin
220
+ dec_w217.bin
221
+ dec_w218.bin
222
+ dec_w219.bin
223
+ dec_w220.bin
224
+ dec_w221.bin
225
+ dec_w222.bin
226
+ dec_w223.bin
227
+ dec_c000.bin
228
+ dec_c001.bin
229
+ dec_c002.bin
230
+ dec_c003.bin
231
+ dec_c004.bin
232
+ dec_c005.bin
233
+ dec_c006.bin
234
+ dec_c007.bin
235
+ dec_c008.bin
236
+ dec_c009.bin
237
+ dec_c010.bin
238
+ dec_c011.bin
239
+ dec_c012.bin
240
+ dec_c013.bin
241
+ dec_c014.bin
242
+ dec_c015.bin
243
+ dec_c016.bin
244
+ dec_c017.bin
245
+ dec_c018.bin
246
+ dec_c019.bin
247
+ dec_c020.bin
248
+ dec_c021.bin
249
+ dec_c022.bin
250
+ dec_c023.bin
251
+ dec_c024.bin
252
+ dec_c025.bin
253
+ dec_c026.bin
254
+ dec_c027.bin
255
+ dec_c028.bin
256
+ dec_c029.bin
257
+ dec_c030.bin
258
+ dec_c031.bin
259
+ dec_c032.bin
260
+ dec_c033.bin
261
+ dec_c034.bin
262
+ dec_c035.bin
263
+ dec_c036.bin
264
+ dec_c037.bin
265
+ dec_c038.bin
266
+ dec_c039.bin
267
+ dec_c040.bin
268
+ dec_c041.bin
269
+ dec_c042.bin
270
+ dec_c043.bin
271
+ dec_c044.bin
272
+ dec_c045.bin
273
+ dec_c046.bin
274
+ dec_c047.bin
275
+ dec_c048.bin
276
+ dec_c049.bin
277
+ dec_c050.bin
278
+ dec_c051.bin
279
+ dec_c052.bin
280
+ dec_c053.bin
281
+ dec_c054.bin
282
+ dec_c055.bin
decoder_28L_512_c.tflite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f9bf10a236bfe274d9e8a92c2b555f44aeddb64db145b28d57de8b582976726
3
+ size 910552
embd_table.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ad013ba4d8dd6fca8ad70ba5d3b690f01047f9a52864397fd8c1942a22a5e27
3
+ size 191439360
head_q8.tflite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66284660db059221830c28e5a6a16071496d03b6f76271a94328288af1b268d2
3
+ size 235205368
prefill_512_t16_c.tflite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c43f5bdb955230f647f01fa1dae996a8aa452a2a5b6e74820b2403db57e7efa
3
+ size 917824
vibe_front_10s_q8.tflite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bd70108e7ee2e31253d3f81c5f43524e86ce7f4dd72ab5ccb6f106c49c01117
3
+ size 700186232
vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
weights/dec_w000.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b1cebc8263e181c392dac57a1d2da40c64292bed441089a7c6ceb64d9e13857
3
+ size 786432
weights/dec_w001.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:026f08d40e077c9f425a30aa510ed03234f0a37e201b5b18164822d9b727577a
3
+ size 8192
weights/dec_w002.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:284e413ef99f7fafbba50b69492b961a193a403081eb8c7e89424a2fda86d880
3
+ size 589824
weights/dec_w003.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6d998fa0bb860edf7f800aba5c926f8eae300e271c32ac6f36dbd882bdf87bc
3
+ size 6144
weights/dec_w004.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78e982c7052d089445489e81bf579a0b3d6a66d8a09e4ad21a8185a1eba8f3a5
3
+ size 6881280
weights/dec_w005.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af495fe8091019bd2bb9c4e0d413b9299b70ba1d38b7c5582bb0ee43d492e371
3
+ size 71680
weights/dec_w006.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:edfb82a35bb9d6ef16b90b96d273b44bcbe8bb6c236c071fa5ecfe81d5ab0ea6
3
+ size 3440640
weights/dec_w007.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3acdeaf3b5d8252a5936d9906b76ddff04e74a0159ea6784ca67ab3c886b2afc
3
+ size 6144
weights/dec_w008.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:633c76f0f8b3ac8dc14ac175f650d29e54222ff939f9aa7c071c4e7ef639c65a
3
+ size 786432
weights/dec_w009.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f07508ed5a108edf67d500bc1271afce43e5f6e1de0306d4d9540dfce883467
3
+ size 8192
weights/dec_w010.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b98ff38f468082aafff57e1677d307f969d907f5cc91069ce56bd0607951a1e
3
+ size 589824
weights/dec_w011.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0b6e10bc1836a3a2c5cf2869849db1b70c76d767a6f2ee99f3b706afd25a8e2
3
+ size 6144
weights/dec_w012.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4b0f6030faf7b5924da101e76af82d859bb96d95a10d3bbaaa901235f48cb73
3
+ size 6881280
weights/dec_w013.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5199f177b1596011c45dfb3ec7c847723cc24bebf4eca46598efa730fbcc8716
3
+ size 71680
weights/dec_w014.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2c12184e1d04dee69acd9b433b113d84af8bebe3ba366aca85205fa5bb9e520
3
+ size 3440640
weights/dec_w015.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23791f528169155e36056d8ed64b08d68c931cb5057568609d0cd50e34ae32fb
3
+ size 6144
weights/dec_w016.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b9512e0927e8fcc6bc37f658a5a749fe396aa10f787bed6f5f8361dcd6dfed5
3
+ size 786432
weights/dec_w017.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d907d0799da491464ebdf1b40e52c6999184a20044b36f99b94195dc94fc5716
3
+ size 8192
weights/dec_w018.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3dde1636c575c0e22fb87892b10813c2b4d0faea7d8cf550997dd99431d6679f
3
+ size 589824
weights/dec_w019.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eed5a101bcf01de131514965f44d2911470dd86433b3d2d4a7885ab0bff9f454
3
+ size 6144
weights/dec_w020.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78f532392d49e5725f43ed2dbf4a89f0abe1fa37ef26ba9f8c1de8eb81f0628a
3
+ size 6881280
weights/dec_w021.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86ebd9f7faa437c65d3aafbfdc3b5b3c201fc074ab53668a096c6d65ba27623b
3
+ size 71680
weights/dec_w022.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c0eafed6156027e96c124268bcb213ff5de2805b4ea4949d47310c828b7c4a7
3
+ size 3440640
weights/dec_w023.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b53b36e01c16fc01505c54e02f1997bb860cca922f543bdbf0bf633793e1b209
3
+ size 6144
weights/dec_w024.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3d1598c2d8e1b229621bfca7005a2defeacb744fe1645edb2477d531133333e
3
+ size 786432
weights/dec_w025.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5b1b47a7ba8dc4f275bb8464d85a0dc2f1082b2af90c65a6348c9c57edd2ea0
3
+ size 8192
weights/dec_w026.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f57ca9a5e8e475ce6df957dd9ad6a7593a0d7f6a29d49f41342395d0f203c458
3
+ size 589824
weights/dec_w027.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:804ff213adc6803618f6b3c90a969943ddcd09effc0af96727ecc55db3ad5a72
3
+ size 6144
weights/dec_w028.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f650c6ced7fc7e714efb190c7a762a473cbbfa5cf4e5eee523451c87724d31af
3
+ size 6881280
weights/dec_w029.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dba57dac19fcf730d22c6f5e084197db2d1e573a6da6c156c8e73d2aab898255
3
+ size 71680
weights/dec_w030.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c64af78bc892c39302548cc79f3e0ba0b8d7aa914c9b899487ee248e37da9267
3
+ size 3440640
weights/dec_w031.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4092e83c089658a665d938a69725abbf858ea7280bb04358861de20f0507036
3
+ size 6144
weights/dec_w032.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab19e274888bad5acf1bcb37db83aaf387a4bff6915128d07fe77ab5013bb2ad
3
+ size 786432
weights/dec_w033.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9feed25a63a6301750676d48b276b2a21ace001cd85891797d77c819e60a6ce4
3
+ size 8192
weights/dec_w034.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc1c2dabd99aa916070d087b9a7c41bb877bd7f1a62603766ff1b01aea56db10
3
+ size 589824
weights/dec_w035.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e27864bdabb8b3c5bedf519149ae56bf641ca207d7db5d51825bdc25254df084
3
+ size 6144
weights/dec_w036.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f52485940283b7a76bf56ce8f77683cf8bca8d9cf7bae843b148457ace12fd67
3
+ size 6881280
weights/dec_w037.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad63c24e2a5758ad238c3bf61559525a3deb97121186f1601b5219e753bb6df0
3
+ size 71680
weights/dec_w038.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d23d7dcda7d8ce3c63a55560556de3c3211c3ce5b5e7809dddad666258c98c3c
3
+ size 3440640
weights/dec_w039.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35fe090789bd2d7066c9d29c2d1b2f33054d7506d395292bbf51e289b1a9f8ea
3
+ size 6144
weights/dec_w040.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:05c3d93204d31aa13befe8ecb8556cebb621862a80d24fc1e3374935efa98299
3
+ size 786432
weights/dec_w041.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:629cc08c5690b72a57ec3e12531adb8dd6d38d4664e79a643b50fc4e66a5f89d
3
+ size 8192