Document Qwen3 shard repository
Browse files
README.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
library_name: onnxruntime
|
| 4 |
+
tags:
|
| 5 |
+
- onnx
|
| 6 |
+
- qwen3
|
| 7 |
+
- browser-inference
|
| 8 |
+
- distributed-inference
|
| 9 |
---
|
| 10 |
+
|
| 11 |
+
# WebAI@Home Qwen3-0.6B ONNX shards
|
| 12 |
+
|
| 13 |
+
This repository contains the three ONNX shards used by the [WebAI@Home Worker](https://github.com/webai-at-home/worker) to run the Qwen3-0.6B language model across browser workers.
|
| 14 |
+
|
| 15 |
+
## Files
|
| 16 |
+
|
| 17 |
+
- `shards/shard-1.onnx` contains the token embedding and the first group of decoder layers.
|
| 18 |
+
- `shards/shard-2.onnx` contains the middle group of decoder layers.
|
| 19 |
+
- `shards/shard-3.onnx` contains the final group of decoder layers and the language-model output head.
|
| 20 |
+
|
| 21 |
+
The three files are static model assets. A Worker browser downloads only the shard assigned to its stage and stores the downloaded bytes in its browser cache for later use.
|
| 22 |
+
|
| 23 |
+
## Source and version
|
| 24 |
+
|
| 25 |
+
The shards were split from the Qwen3-0.6B ONNX model published as [`onnx-community/Qwen3-0.6B-ONNX`](https://huggingface.co/onnx-community/Qwen3-0.6B-ONNX). The WebAI@Home Worker uses this repository by immutable revision, not by the moving `main` branch.
|
| 26 |
+
|
| 27 |
+
This repository is part of the [WebAI@Home](https://github.com/webai-at-home/webai-at-home) project. It is intended to be downloaded by browser code through the Hugging Face Hub and does not contain executable application code.
|