MichaelAnthony commited on
Commit
ebb7bb2
·
verified ·
1 Parent(s): 8d58e48

release-r3-complex-implicit

Browse files
.gitattributes CHANGED
@@ -33,6 +33,7 @@ saved_model/**/* 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
  qwen-3.5-0.8b-Hedgehog.F16.gguf filter=lfs diff=lfs merge=lfs -text
37
  qwen-3.5-0.8b-Hedgehog.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
38
  qwen-3.5-0.8b-Hedgehog.Q6_K.gguf 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
37
  qwen-3.5-0.8b-Hedgehog.F16.gguf filter=lfs diff=lfs merge=lfs -text
38
  qwen-3.5-0.8b-Hedgehog.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
39
  qwen-3.5-0.8b-Hedgehog.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
Modelfile CHANGED
@@ -1,7 +1,3 @@
1
- FROM qwen-3.5-0.8b-Hedgehog.Q4_K_M.gguf
2
- TEMPLATE """<|im_start|>system
3
- {{ .System }}<|im_end|>
4
- <|im_start|>user
5
- {{ .Prompt }}<|im_end|>
6
- <|im_start|>assistant
7
- """
 
1
+ FROM ./qwen-3.5-0.8b-Hedgehog.Q8_0.gguf
2
+ PARAMETER temperature 0
3
+
 
 
 
 
README.md CHANGED
@@ -1,42 +1,43 @@
1
- ---
2
- license: apache-2.0
3
- language:
4
- - en
5
- pipeline_tag: text-generation
6
- tags:
7
- - qwen
8
- - gguf
9
- - llama-cpp
10
- - ollama
11
- - hedgehog
12
- base_model: Qwen/Qwen3.5-0.8B
13
- ---
14
-
15
- # Qwen 3.5 0.8B Hedgehog (GGUF Quantizations)
16
-
17
- Official GGUF quantizations for **Qwen 3.5 0.8B Hedgehog** for fast local inference using `llama.cpp` and `Ollama`.
18
-
19
- ## 📦 Quantizations Included
20
- - `qwen-3.5-0.8b-Hedgehog.F16.gguf` (1.41 GiB) - 16-bit Float precision
21
- - `qwen-3.5-0.8b-Hedgehog.Q4_K_M.gguf` (504.8 MiB) - 4-bit medium (Recommended)
22
- - `qwen-3.5-0.8b-Hedgehog.Q6_K.gguf` (600.6 MiB) - 6-bit quantization
23
- - `qwen-3.5-0.8b-Hedgehog.Q8_0.gguf` (774.2 MiB) - 8-bit quantization
24
-
25
- ---
26
-
27
- ## 🚀 Quickstart with Ollama
28
-
29
- ```bash
30
- # Pull & Run 4-bit quantization directly
31
- ollama run hf.co/MichaelAnthony/qwen-3.5-0.8b-Hedgehog-GGUF:Q4_K_M "Extract key findings from: ..."
32
-
33
- # 8-bit quantization
34
- ollama run hf.co/MichaelAnthony/qwen-3.5-0.8b-Hedgehog-GGUF:Q8_0
35
-
36
- # 16-bit Float precision
37
- ollama run hf.co/MichaelAnthony/qwen-3.5-0.8b-Hedgehog-GGUF:F16
38
- ```
39
-
40
- ## 📦 Related Repositories
41
- - Main PyTorch Model: [`MichaelAnthony/qwen-3.5-0.8b-Hedgehog`](https://huggingface.co/MichaelAnthony/qwen-3.5-0.8b-Hedgehog)
42
- - MLX Apple Silicon Model: [`MichaelAnthony/qwen-3.5-0.8b-Hedgehog-MLX`](https://huggingface.co/MichaelAnthony/qwen-3.5-0.8b-Hedgehog-MLX)
 
 
1
+ ---
2
+ license: apache-2.0
3
+ library_name: gguf
4
+ language:
5
+ - en
6
+ pipeline_tag: text-generation
7
+ base_model: MichaelAnthony/qwen-3.5-0.8b-Hedgehog
8
+ tags:
9
+ - gguf
10
+ - qwen3.5
11
+ - rag
12
+ - document-extraction
13
+ - json
14
+ - simplerag
15
+ - hedgehog
16
+ ---
17
+
18
+ # qwen-3.5-0.8b-Hedgehog-GGUF
19
+
20
+ R3 GGUF releases of
21
+ [`MichaelAnthony/qwen-3.5-0.8b-Hedgehog`](https://huggingface.co/MichaelAnthony/qwen-3.5-0.8b-Hedgehog),
22
+ a Qwen 3.5 0.8B SimpleRAG document extractor.
23
+
24
+ | Format | File | Size | SHA-256 |
25
+ | --- | --- | ---: | --- |
26
+ | F16 | `qwen-3.5-0.8b-Hedgehog.F16.gguf` | 1.41 GiB | `08371f4b71e8c60aba4bbcf0bd2f524cce770f1c4c5a92113d38fda333340c85` |
27
+ | Q4_K_M | `qwen-3.5-0.8b-Hedgehog.Q4_K_M.gguf` | 504.8 MiB | `ebb46a0d8d3e9933d4426fdb379dcfc4a61e404166ae06144dd25e9ed518ac1e` |
28
+ | Q6_K | `qwen-3.5-0.8b-Hedgehog.Q6_K.gguf` | 600.6 MiB | `28d8b1fdfecd84b907ef01f271426abf769f7aa2ea7a2c7f0d3d14953fb3092e` |
29
+ | Q8_0 | `qwen-3.5-0.8b-Hedgehog.Q8_0.gguf` | 774.2 MiB | `352f51d967af35b6c0e48a6c68243261542c4fbcf8541920a868439964365502` |
30
+
31
+ All files report `general.name=qwen-3.5-0.8b-Hedgehog`,
32
+ `general.architecture=qwen35`, 24 transformer blocks, 320 tensors, and no
33
+ next-token-prediction head.
34
+
35
+ The R3 Q8_0 file received a BenchLocal DataExtract-15 final score of **72/100**
36
+ under temperature-0 generation, compared with **41/100** for the stock Qwen3.5
37
+ 0.8B Q8_0 in the same run. This benchmark was performed after training and its
38
+ scenarios were not used as training examples. Only Q8_0 was used for that
39
+ comparison; validate other quantizations independently.
40
+
41
+ For strict extraction, use temperature 0, disable thinking, provide only the
42
+ retrieved evidence, request a concrete JSON contract, and validate the response.
43
+
qwen-3.5-0.8b-Hedgehog.F16.gguf CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:27bd38b2a53819892023694f72db08c04ef163e20e7446666dd1317021d689c4
3
  size 1516744064
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08371f4b71e8c60aba4bbcf0bd2f524cce770f1c4c5a92113d38fda333340c85
3
  size 1516744064
qwen-3.5-0.8b-Hedgehog.Q4_K_M.gguf CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7da1f067072cb7d4d3a75064ab6ecea1fa996305eee0022ad633c5686cf3b65e
3
  size 529296768
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebb46a0d8d3e9933d4426fdb379dcfc4a61e404166ae06144dd25e9ed518ac1e
3
  size 529296768
qwen-3.5-0.8b-Hedgehog.Q6_K.gguf CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:954f7cc7f09b977f91c5cc8754cdbd30110578fc3d06ab82745259d1231afb27
3
  size 629743488
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28d8b1fdfecd84b907ef01f271426abf769f7aa2ea7a2c7f0d3d14953fb3092e
3
  size 629743488
qwen-3.5-0.8b-Hedgehog.Q8_0.gguf CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7a7d3983e360d76e91019f232e3f89921f5874c93cda4f00d4a5c4438e24ae65
3
  size 811842944
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:352f51d967af35b6c0e48a6c68243261542c4fbcf8541920a868439964365502
3
  size 811842944