tgo-app-dev Claude Opus 4.8 commited on
Commit
f22c0e5
·
1 Parent(s): a362e06

Add VPIPE supplementary CoreML models with docs and licenses

Browse files

Release three pre-converted Core ML model packages consumed by the VPIPE
runtime, each shipped as a Git LFS .tar of an .mlpackage:

- qwen3_5_mlx_4b_vision_vid_512x320_w8 Qwen3.5-4B vision tower (Apache-2.0)
- yolox_l_1024x640_w8 YOLOX-L object detector (Apache-2.0)
- silero-vad-unified-v6 Silero VAD v6, unified (MIT)

Document each model in README.md (task, I/O, precision, upstream source,
conversion toolchain, SHA-256 checksums) and record per-model attribution
with verbatim license texts in THIRD_PARTY_LICENSES.md.

The bundle mixes two licenses, so the README front matter declares
`license: other` (apache-2.0 and mit) rather than a single identifier.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

README.md CHANGED
@@ -1,3 +1,111 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ license_name: mixed-apache-2.0-and-mit
4
+ license_link: https://huggingface.co/tgo-app-dev/vpipe-supplement/blob/main/THIRD_PARTY_LICENSES.md
5
+ tags:
6
+ - coreml
7
+ - vpipe
8
+ - apple-silicon
9
+ - object-detection
10
+ - voice-activity-detection
11
+ - vision-language-model
12
  ---
13
+
14
+ # VPIPE supplementary CoreML models
15
+
16
+ This repository distributes the supplementary, pre-converted **Core ML**
17
+ model packages consumed by the VPIPE runtime — a concurrent pipeline
18
+ framework for real-time video tasks on Apple silicon, by T-Go LLC. These
19
+ are third-party models converted to Core ML; they are released here so the
20
+ VPIPE runtime can fetch a pinned, ready-to-run artifact instead of
21
+ re-running the conversion.
22
+
23
+ > **Licensing note:** the bundled models are **not** all under a single
24
+ > license. Two are Apache-2.0 and one (Silero VAD) is MIT. See
25
+ > [THIRD_PARTY_LICENSES.md](THIRD_PARTY_LICENSES.md) for the per-model
26
+ > attribution and verbatim license texts.
27
+
28
+ ## Distribution format
29
+
30
+ Each archive is a `.tar` (tracked with Git LFS) containing a single
31
+ top-level `*.mlpackage` directory — an unflattened Core ML model package
32
+ with its `Manifest.json`, the `model.mlmodel` spec, and the
33
+ `weights/weight.bin` blob. Unpack before use:
34
+
35
+ ```sh
36
+ tar xf yolox_l_1024x640_w8.tar # -> yolox_l_1024x640_w8.mlpackage/
37
+ ```
38
+
39
+ The VPIPE runtime loads the unpacked `.mlpackage` via its `model_path`
40
+ configuration. In the filenames, `w8` denotes 8-bit weight quantization
41
+ (activations run in FP16 on the Apple Neural Engine); resolutions are
42
+ written `WxH`.
43
+
44
+ ## Models included
45
+
46
+ | Archive | Model | Task | License |
47
+ | --- | --- | --- | --- |
48
+ | `qwen3_5_mlx_4b_vision_vid_512x320_w8.tar` | Qwen3.5-4B vision tower (Core ML) | Vision encoder for a multimodal LLM | Apache-2.0 |
49
+ | `yolox_l_1024x640_w8.tar` | YOLOX-L (Core ML) | Object detection | Apache-2.0 |
50
+ | `silero-vad-unified-v6.tar` | Silero VAD v6, unified (Core ML) | Voice activity detection | MIT |
51
+
52
+ ### `qwen3_5_mlx_4b_vision_vid_512x320_w8`
53
+
54
+ Qwen3.5-4B vision tower (`variant=ane_v1_video`), the vision encoder that
55
+ turns video frames into the embedding sequence consumed by the Qwen3.5-4B
56
+ language model.
57
+
58
+ - **Task:** image/video → vision feature embeddings (multimodal LLM front-end).
59
+ - **Inputs:** `image0`, `image1` — the two consecutive video frames that
60
+ form one temporal patch, each **512×320 (W×H)**. Fed as a BGRA8888
61
+ `CVPixelBuffer`; the graph drops alpha and applies a `1/127.5` scale and
62
+ `-1` bias, yielding a BGR tensor in `[-1, 1]`.
63
+ - **Output:** `image_features` — vision features of shape `(160, 2560)`.
64
+ - **Precision:** 8-bit weight quantization, FP16 compute.
65
+ - **Upstream:** [Qwen3.5](https://huggingface.co/Qwen) (Qwen team, Alibaba Cloud) — Apache-2.0.
66
+ - **Conversion:** coremltools 9.0 from TorchScript (`torch==2.12.0`).
67
+
68
+ ### `yolox_l_1024x640_w8`
69
+
70
+ YOLOX-L anchor-free object detector, converted to Core ML at a fixed
71
+ **1024×640 (W×H)** input.
72
+
73
+ - **Task:** object detection (bounding boxes + per-class scores).
74
+ - **Input:** `image` — Core ML image input at 1024×640.
75
+ - **Output:** `output` — detection tensor `[1, N, 4 + num_classes]`
76
+ (`(cx, cy, w, h)` in model-input pixels plus sigmoid class scores).
77
+ - **Precision:** 8-bit weight quantization, FP16 compute.
78
+ - **Upstream:** [YOLOX](https://github.com/Megvii-BaseDetection/YOLOX) (Megvii Inc.) — Apache-2.0.
79
+ - **Conversion:** coremltools 9.0 from TorchScript (`torch==2.7.0`).
80
+
81
+ ### `silero-vad-unified-v6`
82
+
83
+ Silero VAD v6.0.0, the unified single-graph (STFT + encoder + decoder)
84
+ Core ML conversion by FluidInference.
85
+
86
+ - **Task:** voice activity detection (per-window speech probability).
87
+ - **Inputs:** `audio_input` (mono PCM window) plus the recurrent
88
+ `hidden_state` / `cell_state` carried between calls.
89
+ - **Outputs:** `vad_output` (speech probability) plus
90
+ `new_hidden_state` / `new_cell_state`.
91
+ - **Precision:** FP16 compute.
92
+ - **Upstream:** [Silero VAD](https://github.com/snakers4/silero-vad)
93
+ (Silero Team) — MIT; Core ML conversion from
94
+ [FluidInference/silero-vad-coreml](https://huggingface.co/FluidInference/silero-vad-coreml) — MIT.
95
+ - **Conversion:** coremltools 9.0b1 from TorchScript (`torch==2.7.0`).
96
+
97
+ ## Verifying downloads
98
+
99
+ SHA-256 checksums of the archives:
100
+
101
+ ```
102
+ 3940398c2518ac5f01c09f5f5eab868c2b217ab53c7d9a145d2387e76251b5d5 qwen3_5_mlx_4b_vision_vid_512x320_w8.tar
103
+ 133cd460061c943a042a4d69090825f83941725db2097b4e8ebae9802b956cd3 yolox_l_1024x640_w8.tar
104
+ ee14d006d1cea87f15a4f0ac5f3e1e00b80a10c40eca855e8ff6741f389b4423 silero-vad-unified-v6.tar
105
+ ```
106
+
107
+ ## Licenses
108
+
109
+ These are third-party models redistributed in converted form. Each retains
110
+ its upstream license; see [THIRD_PARTY_LICENSES.md](THIRD_PARTY_LICENSES.md)
111
+ for full attribution and verbatim license texts.
THIRD_PARTY_LICENSES.md ADDED
@@ -0,0 +1,343 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Third-Party Licenses
2
+
3
+ This repository redistributes the following third-party machine-learning
4
+ models in pre-converted **Core ML** form. Each entry below names the
5
+ component and the archive it ships in, identifies the upstream source,
6
+ reproduces the upstream copyright statement, and points to the verbatim
7
+ license text required by that component's license.
8
+
9
+ Two of the three models are licensed under the Apache License, Version 2.0;
10
+ the third (Silero VAD) is licensed under the MIT License. The verbatim
11
+ license texts are reproduced in the appendices at the end of this file.
12
+
13
+ | Archive | Component | License |
14
+ | --- | --- | --- |
15
+ | `qwen3_5_mlx_4b_vision_vid_512x320_w8.tar` | Qwen3.5 vision tower | Apache-2.0 ([Appendix A](#appendix-a-apache-license-version-20)) |
16
+ | `yolox_l_1024x640_w8.tar` | YOLOX | Apache-2.0 ([Appendix A](#appendix-a-apache-license-version-20)) |
17
+ | `silero-vad-unified-v6.tar` | Silero VAD (FluidInference Core ML conversion) | MIT ([Appendix B](#appendix-b-mit-license)) |
18
+
19
+ ---
20
+
21
+ ## Qwen3.5 (vision tower)
22
+
23
+ The archive `qwen3_5_mlx_4b_vision_vid_512x320_w8.tar` contains a Core ML
24
+ conversion of the **Qwen3.5-4B** vision tower (the multimodal vision
25
+ encoder), derived from the Qwen3.5 model series published by the Qwen team
26
+ at Alibaba Cloud (<https://huggingface.co/Qwen>). The weights are
27
+ 8-bit-quantized and the graph is exported to Core ML; the model is otherwise
28
+ a derivative of the upstream Qwen3.5 weights.
29
+
30
+ Qwen3.5 open-weight models are distributed under the Apache License,
31
+ Version 2.0.
32
+
33
+ ### Copyright notice
34
+
35
+ Reproduced from the upstream `LICENSE`:
36
+
37
+ > Copyright 2024 Alibaba Cloud
38
+
39
+ ### License
40
+
41
+ Apache License, Version 2.0. The verbatim text is reproduced in
42
+ [Appendix A](#appendix-a-apache-license-version-20), and is available
43
+ upstream at
44
+ <https://huggingface.co/Qwen/Qwen3-8B/blob/main/LICENSE> and
45
+ <https://www.apache.org/licenses/LICENSE-2.0>.
46
+
47
+ ---
48
+
49
+ ## YOLOX
50
+
51
+ The archive `yolox_l_1024x640_w8.tar` contains a Core ML conversion of
52
+ **YOLOX-L**, the anchor-free object detector from Megvii Inc.
53
+ (<https://github.com/Megvii-BaseDetection/YOLOX>). The weights are
54
+ 8-bit-quantized and exported to Core ML at a 1024×640 input; the model is
55
+ otherwise a derivative of the upstream YOLOX-L weights.
56
+
57
+ YOLOX is distributed under the Apache License, Version 2.0.
58
+
59
+ ### Copyright notice
60
+
61
+ Reproduced verbatim from
62
+ <https://github.com/Megvii-BaseDetection/YOLOX/blob/main/LICENSE>:
63
+
64
+ > Copyright (c) 2021-2022 Megvii Inc. All rights reserved.
65
+
66
+ ### License
67
+
68
+ Apache License, Version 2.0. The verbatim text is reproduced in
69
+ [Appendix A](#appendix-a-apache-license-version-20), and is available
70
+ upstream at
71
+ <https://github.com/Megvii-BaseDetection/YOLOX/blob/main/LICENSE>.
72
+
73
+ ---
74
+
75
+ ## Silero VAD
76
+
77
+ The archive `silero-vad-unified-v6.tar` contains the **Silero VAD v6.0.0**
78
+ unified Core ML model (STFT + encoder + decoder in one graph). The
79
+ underlying voice-activity-detection model is Silero VAD by the Silero Team
80
+ (<https://github.com/snakers4/silero-vad>); the Core ML conversion
81
+ redistributed here is from FluidInference
82
+ (<https://huggingface.co/FluidInference/silero-vad-coreml>). Both the
83
+ original model and the FluidInference conversion are distributed under the
84
+ MIT License.
85
+
86
+ ### Copyright notice
87
+
88
+ Reproduced verbatim from
89
+ <https://github.com/snakers4/silero-vad/blob/master/LICENSE>:
90
+
91
+ > Copyright (c) 2020-present Silero Team
92
+
93
+ The FluidInference Core ML conversion credits both the Silero Team
94
+ (original model) and the FluidAudio Team (conversion) and is itself
95
+ released under the MIT License.
96
+
97
+ ### License
98
+
99
+ MIT License. The verbatim text is reproduced in
100
+ [Appendix B](#appendix-b-mit-license), and is available upstream at
101
+ <https://github.com/snakers4/silero-vad/blob/master/LICENSE>.
102
+
103
+ ---
104
+
105
+ # Appendix A: Apache License, Version 2.0
106
+
107
+ The Qwen3.5 vision tower and YOLOX models above are both distributed under
108
+ the following license, reproduced verbatim.
109
+
110
+ ```
111
+ Apache License
112
+ Version 2.0, January 2004
113
+ http://www.apache.org/licenses/
114
+
115
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
116
+
117
+ 1. Definitions.
118
+
119
+ "License" shall mean the terms and conditions for use, reproduction,
120
+ and distribution as defined by Sections 1 through 9 of this document.
121
+
122
+ "Licensor" shall mean the copyright owner or entity authorized by
123
+ the copyright owner that is granting the License.
124
+
125
+ "Legal Entity" shall mean the union of the acting entity and all
126
+ other entities that control, are controlled by, or are under common
127
+ control with that entity. For the purposes of this definition,
128
+ "control" means (i) the power, direct or indirect, to cause the
129
+ direction or management of such entity, whether by contract or
130
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
131
+ outstanding shares, or (iii) beneficial ownership of such entity.
132
+
133
+ "You" (or "Your") shall mean an individual or Legal Entity
134
+ exercising permissions granted by this License.
135
+
136
+ "Source" form shall mean the preferred form for making modifications,
137
+ including but not limited to software source code, documentation
138
+ source, and configuration files.
139
+
140
+ "Object" form shall mean any form resulting from mechanical
141
+ transformation or translation of a Source form, including but not
142
+ limited to compiled object code, generated documentation, and
143
+ conversions to other media types.
144
+
145
+ "Work" shall mean the work of authorship, whether in Source or
146
+ Object form, made available under the License, as indicated by a
147
+ copyright notice that is included in or attached to the work
148
+ (an example is provided in the Appendix below).
149
+
150
+ "Derivative Works" shall mean any work, whether in Source or Object
151
+ form, that is based on (or derived from) the Work and for which the
152
+ editorial revisions, annotations, elaborations, or other modifications
153
+ represent, as a whole, an original work of authorship. For the purposes
154
+ of this License, Derivative Works shall not include works that remain
155
+ separable from, or merely link (or bind by name) to the interfaces of,
156
+ the Work and Derivative Works thereof.
157
+
158
+ "Contribution" shall mean any work of authorship, including
159
+ the original version of the Work and any modifications or additions
160
+ to that Work or Derivative Works thereof, that is intentionally
161
+ submitted to Licensor for inclusion in the Work by the copyright owner
162
+ or by an individual or Legal Entity authorized to submit on behalf of
163
+ the copyright owner. For the purposes of this definition, "submitted"
164
+ means any form of electronic, verbal, or written communication sent
165
+ to the Licensor or its representatives, including but not limited to
166
+ communication on electronic mailing lists, source code control systems,
167
+ and issue tracking systems that are managed by, or on behalf of, the
168
+ Licensor for the purpose of discussing and improving the Work, but
169
+ excluding communication that is conspicuously marked or otherwise
170
+ designated in writing by the copyright owner as "Not a Contribution."
171
+
172
+ "Contributor" shall mean Licensor and any individual or Legal Entity
173
+ on behalf of whom a Contribution has been received by Licensor and
174
+ subsequently incorporated within the Work.
175
+
176
+ 2. Grant of Copyright License. Subject to the terms and conditions of
177
+ this License, each Contributor hereby grants to You a perpetual,
178
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
179
+ copyright license to reproduce, prepare Derivative Works of,
180
+ publicly display, publicly perform, sublicense, and distribute the
181
+ Work and such Derivative Works in Source or Object form.
182
+
183
+ 3. Grant of Patent License. Subject to the terms and conditions of
184
+ this License, each Contributor hereby grants to You a perpetual,
185
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
186
+ (except as stated in this section) patent license to make, have made,
187
+ use, offer to sell, sell, import, and otherwise transfer the Work,
188
+ where such license applies only to those patent claims licensable
189
+ by such Contributor that are necessarily infringed by their
190
+ Contribution(s) alone or by combination of their Contribution(s)
191
+ with the Work to which such Contribution(s) was submitted. If You
192
+ institute patent litigation against any entity (including a
193
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
194
+ or a Contribution incorporated within the Work constitutes direct
195
+ or contributory patent infringement, then any patent licenses
196
+ granted to You under this License for that Work shall terminate
197
+ as of the date such litigation is filed.
198
+
199
+ 4. Redistribution. You may reproduce and distribute copies of the
200
+ Work or Derivative Works thereof in any medium, with or without
201
+ modifications, and in Source or Object form, provided that You
202
+ meet the following conditions:
203
+
204
+ (a) You must give any other recipients of the Work or
205
+ Derivative Works a copy of this License; and
206
+
207
+ (b) You must cause any modified files to carry prominent notices
208
+ stating that You changed the files; and
209
+
210
+ (c) You must retain, in the Source form of any Derivative Works
211
+ that You distribute, all copyright, patent, trademark, and
212
+ attribution notices from the Source form of the Work,
213
+ excluding those notices that do not pertain to any part of
214
+ the Derivative Works; and
215
+
216
+ (d) If the Work includes a "NOTICE" text file as part of its
217
+ distribution, then any Derivative Works that You distribute must
218
+ include a readable copy of the attribution notices contained
219
+ within such NOTICE file, excluding those notices that do not
220
+ pertain to any part of the Derivative Works, in at least one
221
+ of the following places: within a NOTICE text file distributed
222
+ as part of the Derivative Works; within the Source form or
223
+ documentation, if provided along with the Derivative Works; or,
224
+ within a display generated by the Derivative Works, if and
225
+ wherever such third-party notices normally appear. The contents
226
+ of the NOTICE file are for informational purposes only and
227
+ do not modify the License. You may add Your own attribution
228
+ notices within Derivative Works that You distribute, alongside
229
+ or as an addendum to the NOTICE text from the Work, provided
230
+ that such additional attribution notices cannot be construed
231
+ as modifying the License.
232
+
233
+ You may add Your own copyright statement to Your modifications and
234
+ may provide additional or different license terms and conditions
235
+ for use, reproduction, or distribution of Your modifications, or
236
+ for any such Derivative Works as a whole, provided Your use,
237
+ reproduction, and distribution of the Work otherwise complies with
238
+ the conditions stated in this License.
239
+
240
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
241
+ any Contribution intentionally submitted for inclusion in the Work
242
+ by You to the Licensor shall be under the terms and conditions of
243
+ this License, without any additional terms or conditions.
244
+ Notwithstanding the above, nothing herein shall supersede or modify
245
+ the terms of any separate license agreement you may have executed
246
+ with Licensor regarding such Contributions.
247
+
248
+ 6. Trademarks. This License does not grant permission to use the trade
249
+ names, trademarks, service marks, or product names of the Licensor,
250
+ except as required for reasonable and customary use in describing the
251
+ origin of the Work and reproducing the content of the NOTICE file.
252
+
253
+ 7. Disclaimer of Warranty. Unless required by applicable law or
254
+ agreed to in writing, Licensor provides the Work (and each
255
+ Contributor provides its Contributions) on an "AS IS" BASIS,
256
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
257
+ implied, including, without limitation, any warranties or conditions
258
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
259
+ PARTICULAR PURPOSE. You are solely responsible for determining the
260
+ appropriateness of using or redistributing the Work and assume any
261
+ risks associated with Your exercise of permissions under this License.
262
+
263
+ 8. Limitation of Liability. In no event and under no legal theory,
264
+ whether in tort (including negligence), contract, or otherwise,
265
+ unless required by applicable law (such as deliberate and grossly
266
+ negligent acts) or agreed to in writing, shall any Contributor be
267
+ liable to You for damages, including any direct, indirect, special,
268
+ incidental, or consequential damages of any character arising as a
269
+ result of this License or out of the use or inability to use the
270
+ Work (including but not limited to damages for loss of goodwill,
271
+ work stoppage, computer failure or malfunction, or any and all
272
+ other commercial damages or losses), even if such Contributor
273
+ has been advised of the possibility of such damages.
274
+
275
+ 9. Accepting Warranty or Additional Liability. While redistributing
276
+ the Work or Derivative Works thereof, You may choose to offer,
277
+ and charge a fee for, acceptance of support, warranty, indemnity,
278
+ or other liability obligations and/or rights consistent with this
279
+ License. However, in accepting such obligations, You may act only
280
+ on Your own behalf and on Your sole responsibility, not on behalf
281
+ of any other Contributor, and only if You agree to indemnify,
282
+ defend, and hold each Contributor harmless for any liability
283
+ incurred by, or claims asserted against, such Contributor by reason
284
+ of your accepting any such warranty or additional liability.
285
+
286
+ END OF TERMS AND CONDITIONS
287
+
288
+ APPENDIX: How to apply the Apache License to your work.
289
+
290
+ To apply the Apache License to your work, attach the following
291
+ boilerplate notice, with the fields enclosed by brackets "[]"
292
+ replaced with your own identifying information. (Don't include
293
+ the brackets!) The text should be enclosed in the appropriate
294
+ comment syntax for the file format. We also recommend that a
295
+ file or class name and description of purpose be included on the
296
+ same "printed page" as the copyright notice for easier
297
+ identification within third-party archives.
298
+
299
+ Copyright [yyyy] [name of copyright owner]
300
+
301
+ Licensed under the Apache License, Version 2.0 (the "License");
302
+ you may not use this file except in compliance with the License.
303
+ You may obtain a copy of the License at
304
+
305
+ http://www.apache.org/licenses/LICENSE-2.0
306
+
307
+ Unless required by applicable law or agreed to in writing, software
308
+ distributed under the License is distributed on an "AS IS" BASIS,
309
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
310
+ See the License for the specific language governing permissions and
311
+ limitations under the License.
312
+ ```
313
+
314
+ ---
315
+
316
+ # Appendix B: MIT License
317
+
318
+ The Silero VAD model above is distributed under the following license,
319
+ reproduced verbatim.
320
+
321
+ ```
322
+ MIT License
323
+
324
+ Copyright (c) 2020-present Silero Team
325
+
326
+ Permission is hereby granted, free of charge, to any person obtaining a copy
327
+ of this software and associated documentation files (the "Software"), to deal
328
+ in the Software without restriction, including without limitation the rights
329
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
330
+ copies of the Software, and to permit persons to whom the Software is
331
+ furnished to do so, subject to the following conditions:
332
+
333
+ The above copyright notice and this permission notice shall be included in all
334
+ copies or substantial portions of the Software.
335
+
336
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
337
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
338
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
339
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
340
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
341
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
342
+ SOFTWARE.
343
+ ```
qwen3_5_mlx_4b_vision_vid_512x320_w8.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3940398c2518ac5f01c09f5f5eab868c2b217ab53c7d9a145d2387e76251b5d5
3
+ size 333077504
silero-vad-unified-v6.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee14d006d1cea87f15a4f0ac5f3e1e00b80a10c40eca855e8ff6741f389b4423
3
+ size 925184
yolox_l_1024x640_w8.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:133cd460061c943a042a4d69090825f83941725db2097b4e8ebae9802b956cd3
3
+ size 54605824