Instructions to use TheStageAI/Qwen3.5-4B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use TheStageAI/Qwen3.5-4B-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use TheStageAI/Qwen3.5-4B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "TheStageAI/Qwen3.5-4B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "TheStageAI/Qwen3.5-4B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M
- Ollama
How to use TheStageAI/Qwen3.5-4B-GGUF with Ollama:
ollama run hf.co/TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M
- Unsloth Studio
How to use TheStageAI/Qwen3.5-4B-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for TheStageAI/Qwen3.5-4B-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for TheStageAI/Qwen3.5-4B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for TheStageAI/Qwen3.5-4B-GGUF to start chatting
- Pi
How to use TheStageAI/Qwen3.5-4B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use TheStageAI/Qwen3.5-4B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use TheStageAI/Qwen3.5-4B-GGUF with Docker Model Runner:
docker model run hf.co/TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M
- Lemonade
How to use TheStageAI/Qwen3.5-4B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.5-4B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use TheStageAI/Qwen3.5-4B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default TheStageAI/Qwen3.5-4B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
Polish model card narrative and citations
Browse files- README.md +55 -25
- release-manifest.json +3 -3
README.md
CHANGED
|
@@ -22,9 +22,9 @@ tags:
|
|
| 22 |
<h1 align="center">Qwen3.5 4B — TheStageAI GGUF</h1>
|
| 23 |
|
| 24 |
<p align="center">
|
| 25 |
-
Four
|
| 26 |
<br>
|
| 27 |
-
<strong>
|
| 28 |
</p>
|
| 29 |
|
| 30 |
<div style="display: flex; gap: 8px; justify-content: center; align-items: center; margin: 16px 0;">
|
|
@@ -42,7 +42,7 @@ tags:
|
|
| 42 |
| XS | 1.52 GB | Minimum footprint | [Download](./Qwen3.5-4B-XS-TS-Q3_K_S.gguf) |
|
| 43 |
| S | 1.90 GB | Compact | [Download](./Qwen3.5-4B-S-TS-Q4_K_S.gguf) |
|
| 44 |
| **M** | **2.39 GB** | **Recommended · Balanced** | [Download](./Qwen3.5-4B-M-TS-Q4_K_M.gguf) |
|
| 45 |
-
| L | 4.49 GB |
|
| 46 |
|
| 47 |
Exact byte counts, SHA-256 hashes, and tensor metadata: [`release-manifest.json`](./release-manifest.json).
|
| 48 |
|
|
@@ -54,7 +54,9 @@ llama-cli \
|
|
| 54 |
--hf-file Qwen3.5-4B-M-TS-Q4_K_M.gguf
|
| 55 |
```
|
| 56 |
|
| 57 |
-
##
|
|
|
|
|
|
|
| 58 |
|
| 59 |
| Tier | IFEval strict — prompt / instruction (%) | MMLU-Pro (%) |
|
| 60 |
| --- | ---: | ---: |
|
|
@@ -64,7 +66,7 @@ llama-cli \
|
|
| 64 |
| **M** | 80.22 / 86.09 | 78.86 |
|
| 65 |
| L | 81.70 / 87.05 | 79.59 |
|
| 66 |
|
| 67 |
-
|
| 68 |
|
| 69 |
> **XS and reasoning:** use S, M, or L for long-form reasoning. Run Qwen XS with `--reasoning off`.
|
| 70 |
|
|
@@ -73,67 +75,95 @@ llama-cli \
|
|
| 73 |
|
| 74 |
- **IFEval:** 541 prompts, native chat template, `enable_thinking=false`, temperature 0.
|
| 75 |
- **MMLU-Pro:** 12,032 questions, native chat template, `enable_thinking=true`, temperature 1, top-p 0.95, 32,768-token output limit.
|
| 76 |
-
- The headline BF16
|
| 77 |
|
| 78 |
-
|
| 79 |
|
| 80 |
</details>
|
| 81 |
|
| 82 |
-
##
|
| 83 |
|
| 84 |
-
|
| 85 |
|
| 86 |
-
### 1. Fit discrete codes
|
| 87 |
|
| 88 |
-
Calibration activations
|
| 89 |
|
| 90 |
-
With the grid fixed, a guarded
|
| 91 |
|
| 92 |
-
### 2. Reconstruct
|
| 93 |
|
| 94 |
-
|
| 95 |
|
| 96 |
-
### 3.
|
| 97 |
|
| 98 |
-
XS and S
|
| 99 |
|
| 100 |
-
|
| 101 |
|
| 102 |
-
|
| 103 |
|
| 104 |
-
|
| 105 |
|
| 106 |
-
|
| 107 |
|
| 108 |
-
|
| 109 |
|
| 110 |
<details>
|
| 111 |
<summary><b>Technical file details</b></summary>
|
| 112 |
|
| 113 |
-
| Tier | Hub
|
| 114 |
| --- | --- | --- | ---: |
|
| 115 |
| XS | `Q3_K_S` | `MOSTLY_Q2_K` | 2.889 |
|
| 116 |
| S | `Q4_K_S` | `MOSTLY_Q2_K` | 3.622 |
|
| 117 |
| M | `Q4_K_M` | `MOSTLY_Q4_K_M` | 4.538 |
|
| 118 |
| L | `Q8_0` | `MOSTLY_Q8_0` | 8.533 |
|
| 119 |
|
| 120 |
-
|
| 121 |
|
| 122 |
Runtime memory also includes KV cache and buffers, which grow with context length.
|
| 123 |
|
| 124 |
</details>
|
| 125 |
|
| 126 |
-
##
|
| 127 |
|
| 128 |
-
|
|
|
|
|
|
|
|
|
|
| 129 |
|
| 130 |
**Have a device, latency, or memory target? [Talk to our team →](https://app.thestage.ai/contact)**
|
| 131 |
|
| 132 |
## Reproducibility
|
| 133 |
|
|
|
|
|
|
|
| 134 |
- **Manifest:** [`release-manifest.json`](./release-manifest.json) records the exact base revision, byte sizes, GGUF file types, whole-file BPW, tensor inventories, SHA-256 digests, held-out KL values, and evaluation IDs.
|
| 135 |
- **Runtime gate:** export and load checks used [llama.cpp revision `bec4772f`](https://github.com/ggml-org/llama.cpp/commit/bec4772f6a2527d371557b5d2032641e5ff7619c).
|
| 136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 137 |
## License
|
| 138 |
|
| 139 |
The model weights are released under the upstream model's **Apache-2.0** license. llama.cpp and other runtime software retain their own licenses.
|
|
|
|
| 22 |
<h1 align="center">Qwen3.5 4B — TheStageAI GGUF</h1>
|
| 23 |
|
| 24 |
<p align="center">
|
| 25 |
+
Four deployment tiers for local inference with llama.cpp · 1.52 GB–4.49 GB
|
| 26 |
<br>
|
| 27 |
+
<strong>Start with M: 2.39 GB and 98% of BF16 instruction-strict IFEval.</strong>
|
| 28 |
</p>
|
| 29 |
|
| 30 |
<div style="display: flex; gap: 8px; justify-content: center; align-items: center; margin: 16px 0;">
|
|
|
|
| 42 |
| XS | 1.52 GB | Minimum footprint | [Download](./Qwen3.5-4B-XS-TS-Q3_K_S.gguf) |
|
| 43 |
| S | 1.90 GB | Compact | [Download](./Qwen3.5-4B-S-TS-Q4_K_S.gguf) |
|
| 44 |
| **M** | **2.39 GB** | **Recommended · Balanced** | [Download](./Qwen3.5-4B-M-TS-Q4_K_M.gguf) |
|
| 45 |
+
| L | 4.49 GB | High-precision Q8 | [Download](./Qwen3.5-4B-L-TS-Q8_0.gguf) |
|
| 46 |
|
| 47 |
Exact byte counts, SHA-256 hashes, and tensor metadata: [`release-manifest.json`](./release-manifest.json).
|
| 48 |
|
|
|
|
| 54 |
--hf-file Qwen3.5-4B-M-TS-Q4_K_M.gguf
|
| 55 |
```
|
| 56 |
|
| 57 |
+
## Why M is the default
|
| 58 |
+
|
| 59 |
+
At 2.39 GB, M retains 98.4% of the BF16 instruction-strict IFEval score; on MMLU-Pro, it retains 99.1% of the BF16 score. It uses 47% less disk than L, making it the default for this release.
|
| 60 |
|
| 61 |
| Tier | IFEval strict — prompt / instruction (%) | MMLU-Pro (%) |
|
| 62 |
| --- | ---: | ---: |
|
|
|
|
| 66 |
| **M** | 80.22 / 86.09 | 78.86 |
|
| 67 |
| L | 81.70 / 87.05 | 79.59 |
|
| 68 |
|
| 69 |
+
IFEval measures deterministic non-thinking instruction following; MMLU-Pro measures sampled long-form reasoning. Only complete scores are shown; `—` means not reported.
|
| 70 |
|
| 71 |
> **XS and reasoning:** use S, M, or L for long-form reasoning. Run Qwen XS with `--reasoning off`.
|
| 72 |
|
|
|
|
| 75 |
|
| 76 |
- **IFEval:** 541 prompts, native chat template, `enable_thinking=false`, temperature 0.
|
| 77 |
- **MMLU-Pro:** 12,032 questions, native chat template, `enable_thinking=true`, temperature 1, top-p 0.95, 32,768-token output limit.
|
| 78 |
+
- The headline BF16 comparison uses instruction-strict IFEval; the raw scores are shown in the table.
|
| 79 |
|
| 80 |
+
In matched long-thinking diagnostics, XS produced longer trajectories and reached the 32,768-token output limit more often than S. The XS MMLU-Pro cell is marked `—` for that reason.
|
| 81 |
|
| 82 |
</details>
|
| 83 |
|
| 84 |
+
## From source weights to deployment tiers
|
| 85 |
|
| 86 |
+
All four tiers are produced by the same production PTQ pipeline; only the precision map changes. The process moves from **native code fitting**, through **sequential reconstruction** and **budget-aware scheduling**, to a final **model-wide alignment** pass.
|
| 87 |
|
| 88 |
+
### 1. Fit native discrete codes
|
| 89 |
|
| 90 |
+
Calibration activations define a curvature objective weighted by true Fisher information for each quantized projection. [NeUQI](https://arxiv.org/abs/2505.17595) initializes every affine group's scale and minimum on that objective, so sensitive weight directions influence the grid more strongly.
|
| 91 |
|
| 92 |
+
With the grid fixed, a guarded cyclic coordinate-descent solver inspired by [QuantEase](https://arxiv.org/abs/2309.01885) searches the integer codes. Continuous sweeps can escape a poor initial projection; projected sweeps return to a valid discrete solution. Round-to-nearest remains a non-regression baseline, and a final K-quant refinement optimizes the stored scales and minima while keeping packed codes fixed.
|
| 93 |
|
| 94 |
+
### 2. Reconstruct the trajectory the model will run
|
| 95 |
|
| 96 |
+
Layers are processed in execution order. Every projection is calibrated against activations from the already-quantized prefix, while a dense reference path measures accumulated drift. [Quantization Error Propagation (QEP)](https://arxiv.org/abs/2504.09629) folds that drift into the next reconstruction target, allowing later layers to compensate for errors they will actually receive at inference time.
|
| 97 |
|
| 98 |
+
### 3. Allocate the encoded byte budget
|
| 99 |
|
| 100 |
+
For XS and S, each quantizable group can select among native Q2_K through Q8_0 representations. The schedule optimizer trades changes in the teacher distribution against **exact encoded byte cost**, including scale and minimum metadata. Sensitive groups keep more precision; robust groups carry more compression.
|
| 101 |
|
| 102 |
+
[ANNA](https://docs.thestage.ai/qlip/docs/source/anna_api.html) provides TheStageAI's automated constrained configuration search, while [RCO](https://arxiv.org/abs/2605.00649) supplies an exact-budget search route ([reference implementation](https://github.com/IST-DASLab/RCO)). For this model, [RCO](https://arxiv.org/abs/2605.00649) selected both the XS and S precision maps. M and L use fixed Q4_K_M and Q8_0 decoder qtype choices, respectively, while retaining the same reconstruction and scale-tuning stages.
|
| 103 |
|
| 104 |
+
Once the map is selected, PTQ is rerun from the original source weights. Every layer therefore sees the final upstream precision choices rather than a collection of independently prepared bank tensors.
|
| 105 |
|
| 106 |
+
### 4. Align the complete model
|
| 107 |
|
| 108 |
+
A short affine distillation pass freezes qtypes, packed codes, dense weights, and tensor layouts while tuning native FP16 scales and minima. The loss matches the teacher's next-token distribution—including high-probability tokens and the remaining tail mass—without changing file size or runtime layout.
|
| 109 |
|
| 110 |
+
Every shipping GGUF is hashed, load-tested, and evaluated on a held-out set of 3,072 sequences using next-token KL. Downstream harnesses use a deterministic HF mirror reconstructed from that exact GGUF; its source SHA-256 and evaluation IDs are recorded in [`release-manifest.json`](./release-manifest.json). The recommended tier is chosen from complete-model results, not from a local reconstruction proxy.
|
| 111 |
|
| 112 |
<details>
|
| 113 |
<summary><b>Technical file details</b></summary>
|
| 114 |
|
| 115 |
+
| Tier | Hub selector | GGUF file type | Whole-file BPW |
|
| 116 |
| --- | --- | --- | ---: |
|
| 117 |
| XS | `Q3_K_S` | `MOSTLY_Q2_K` | 2.889 |
|
| 118 |
| S | `Q4_K_S` | `MOSTLY_Q2_K` | 3.622 |
|
| 119 |
| M | `Q4_K_M` | `MOSTLY_Q4_K_M` | 4.538 |
|
| 120 |
| L | `Q8_0` | `MOSTLY_Q8_0` | 8.533 |
|
| 121 |
|
| 122 |
+
The Hub selector controls sidebar grouping and download discovery. For XS and S it approximates the whole-file size class; [`release-manifest.json`](./release-manifest.json) is authoritative for the internal tensor mix. M and L use fixed Q4_K_M and Q8_0 decoder qtype choices within the same production PTQ pipeline.
|
| 123 |
|
| 124 |
Runtime memory also includes KV cache and buffers, which grow with context length.
|
| 125 |
|
| 126 |
</details>
|
| 127 |
|
| 128 |
+
## TheStageAI Edge Stack
|
| 129 |
|
| 130 |
+
- **Portable local inference:** these GGUF files for llama.cpp-compatible runtimes.
|
| 131 |
+
- **Native Apple Silicon:** [edge-lm](https://github.com/TheStageAI/edge-lm) for compressed MLX models on Macs and iPhones.
|
| 132 |
+
- **Automated compression search:** [ANNA](https://docs.thestage.ai/qlip/docs/source/anna_api.html) for budget-constrained configuration discovery.
|
| 133 |
+
- **Custom deployment:** the [TheStageAI Platform](https://app.thestage.ai/) and [documentation](https://docs.thestage.ai/) for compression, compilation, and serving workflows.
|
| 134 |
|
| 135 |
**Have a device, latency, or memory target? [Talk to our team →](https://app.thestage.ai/contact)**
|
| 136 |
|
| 137 |
## Reproducibility
|
| 138 |
|
| 139 |
+
- **Release:** July 21, 2026.
|
| 140 |
+
- **Base model:** [`Qwen/Qwen3.5-4B`](https://huggingface.co/Qwen/Qwen3.5-4B) at revision [`851bf6e8`](https://huggingface.co/Qwen/Qwen3.5-4B/tree/851bf6e806efd8d0a36b00ddf55e13ccb7b8cd0a).
|
| 141 |
- **Manifest:** [`release-manifest.json`](./release-manifest.json) records the exact base revision, byte sizes, GGUF file types, whole-file BPW, tensor inventories, SHA-256 digests, held-out KL values, and evaluation IDs.
|
| 142 |
- **Runtime gate:** export and load checks used [llama.cpp revision `bec4772f`](https://github.com/ggml-org/llama.cpp/commit/bec4772f6a2527d371557b5d2032641e5ff7619c).
|
| 143 |
|
| 144 |
+
## Citation
|
| 145 |
+
|
| 146 |
+
If you use this checkpoint, please cite the upstream base model and this release:
|
| 147 |
+
|
| 148 |
+
```bibtex
|
| 149 |
+
@misc{thestageai2026qwen3p54bgguf,
|
| 150 |
+
author = {{TheStageAI}},
|
| 151 |
+
title = {Qwen3.5 4B — TheStageAI GGUF Release},
|
| 152 |
+
year = {2026},
|
| 153 |
+
month = {jul},
|
| 154 |
+
howpublished = {Hugging Face model release},
|
| 155 |
+
url = {https://huggingface.co/TheStageAI/Qwen3.5-4B-GGUF},
|
| 156 |
+
note = {XS, S, M, and L deployment tiers},
|
| 157 |
+
}
|
| 158 |
+
```
|
| 159 |
+
|
| 160 |
+
### Methods and tools
|
| 161 |
+
|
| 162 |
+
- **Schedule selection:** [ANNA](https://docs.thestage.ai/qlip/docs/source/anna_api.html), TheStageAI's automated constrained compression configuration search.
|
| 163 |
+
- **Exact-budget optimization:** [RCO: Model Compression with Exact Budget Constraints via Riemannian Manifolds](https://arxiv.org/abs/2605.00649) ([code](https://github.com/IST-DASLab/RCO)).
|
| 164 |
+
- **Discrete PTQ:** [NeUQI: Near-Optimal Uniform Quantization Parameter Initialization for Low-Bit LLMs](https://arxiv.org/abs/2505.17595) and [QuantEase: Optimization-based Quantization for Language Models](https://arxiv.org/abs/2309.01885).
|
| 165 |
+
- **Sequential reconstruction:** [Quantization Error Propagation: Revisiting Layer-Wise Post-Training Quantization](https://arxiv.org/abs/2504.09629).
|
| 166 |
+
|
| 167 |
## License
|
| 168 |
|
| 169 |
The model weights are released under the upstream model's **Apache-2.0** license. llama.cpp and other runtime software retain their own licenses.
|
release-manifest.json
CHANGED
|
@@ -36,7 +36,7 @@
|
|
| 36 |
},
|
| 37 |
"display_name": "Qwen3.5 4B",
|
| 38 |
"family": "Qwen 3.5",
|
| 39 |
-
"generated_at": "2026-07-
|
| 40 |
"license": "apache-2.0",
|
| 41 |
"model_key": "qwen3p5_4b",
|
| 42 |
"reasoning_policy": {
|
|
@@ -185,7 +185,7 @@
|
|
| 185 |
"product": "M",
|
| 186 |
"reasoning_support": "supported",
|
| 187 |
"recommended": true,
|
| 188 |
-
"schedule_method": "fixed
|
| 189 |
"sha256": "f8e45572b9cc35161d4772b09bccfd383fe0bb03fc6d69b40a9138731302290b",
|
| 190 |
"tensor_count": 426,
|
| 191 |
"tensor_type_counts": {
|
|
@@ -225,7 +225,7 @@
|
|
| 225 |
"lm_head_policy": "skip_tied",
|
| 226 |
"output_embedding_mode": "tied_alias",
|
| 227 |
"parameter_count": 4205751296,
|
| 228 |
-
"positioning": "
|
| 229 |
"product": "L",
|
| 230 |
"reasoning_support": "supported",
|
| 231 |
"recommended": false,
|
|
|
|
| 36 |
},
|
| 37 |
"display_name": "Qwen3.5 4B",
|
| 38 |
"family": "Qwen 3.5",
|
| 39 |
+
"generated_at": "2026-07-21T12:22:14.106699+00:00",
|
| 40 |
"license": "apache-2.0",
|
| 41 |
"model_key": "qwen3p5_4b",
|
| 42 |
"reasoning_policy": {
|
|
|
|
| 185 |
"product": "M",
|
| 186 |
"reasoning_support": "supported",
|
| 187 |
"recommended": true,
|
| 188 |
+
"schedule_method": "fixed Q4_K_M",
|
| 189 |
"sha256": "f8e45572b9cc35161d4772b09bccfd383fe0bb03fc6d69b40a9138731302290b",
|
| 190 |
"tensor_count": 426,
|
| 191 |
"tensor_type_counts": {
|
|
|
|
| 225 |
"lm_head_policy": "skip_tied",
|
| 226 |
"output_embedding_mode": "tied_alias",
|
| 227 |
"parameter_count": 4205751296,
|
| 228 |
+
"positioning": "High-precision Q8",
|
| 229 |
"product": "L",
|
| 230 |
"reasoning_support": "supported",
|
| 231 |
"recommended": false,
|