GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

Lufel6848/Qwen3.5-9B-GGUF overview

Qwen3.5 9B GGUF Community made GGUF conversions and quantizations of Qwen3.5 9B , intended for local inference with GGUF compatible software. The original mode…

ggufqwenqwen3.5llama.cppquantizationlocal-aienzhbase_model:Qwen/Qwen3.5-9Bbase_model:quantized:Qwen/Qwen3.5-9Blicense:apache-2.0endpoints_compatibleregion:usconversational

Runs locally from ~5.38 GB disk (8 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline
Author

Repository Files & Downloads

5 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
Qwen3.5-9B-BF16.ggufGGUFBF1617.14 GBDownload
Qwen3.5-9B-Q4_K_M.ggufGGUFQ4_K_M5.38 GBDownload
Qwen3.5-9B-Q5_K_M.ggufGGUFQ5_K_M6.19 GBDownload
Qwen3.5-9B-Q6_K.ggufGGUFQ6_K7.04 GBDownload
Qwen3.5-9B-Q8_0.ggufGGUFQ8_09.11 GBDownload

Model Details

Model IDLufel6848/Qwen3.5-9B-GGUF
AuthorLufel6848
Pipeline
Licenseapache-2.0
Base modelQwen/Qwen3.5-9B
Last modified2026-08-14T16:24:40.000Z

Model README

---

base_model: Qwen/Qwen3.5-9B

license: apache-2.0

language:

  • en
  • zh

tags:

  • qwen
  • qwen3.5
  • gguf
  • llama.cpp
  • quantization
  • local-ai

---

Qwen3.5-9B GGUF

Community-made GGUF conversions and quantizations of Qwen3.5-9B, intended for local inference with GGUF-compatible software.

The original model was converted from its Hugging Face / SafeTensors distribution to GGUF using tools provided by llama.cpp.

> This is an unofficial community conversion.

>

> The Qwen model, architecture, and original weights were developed and released by the Qwen Team at Alibaba. This repository provides converted and quantized GGUF files derived from the original model.

Original Model

  • Model: Qwen/Qwen3.5-9B
  • Developer: Qwen Team / Alibaba
  • Original format: SafeTensors
  • License: Apache License 2.0
  • Original model: https://huggingface.co/Qwen/Qwen3.5-9B

Refer to the original model repository for the authoritative model card, capabilities, limitations, usage information, and license terms.

Available GGUF Quantizations

This repository provides the following quantizations:

| Quantization | Description |

|---|---|

| Q4_K_M | Lower storage and memory requirements. Suitable as a general-purpose local inference option. |

| Q5_K_M | Balanced option with additional weight precision compared with Q4_K_M. |

| Q6_K | Higher-precision quantization for systems with more available memory. |

| Q8_0 | High-precision quantization with substantially larger memory and storage requirements. |

Actual memory consumption is higher than the GGUF file size and depends on factors such as context length, KV cache configuration, inference backend, and runtime settings.

Environment

The conversion workflow and Jupyter Notebook were developed and tested using the Jupyter Notebook environment provided by Vast.ai.

The notebook is not inherently limited to Vast.ai. It is open source and can be adapted to other Jupyter-compatible environments, local Linux systems, cloud instances, or other platforms capable of running the required Python dependencies and compiling llama.cpp.

Environment-specific paths, storage configuration, package installation, and hardware settings may require adjustment when running outside Vast.ai.

The tested Vast.ai workflow should therefore be treated as the reference environment, not as a platform requirement.

Conversion Pipeline

The files in this repository were produced using a reproducible workflow based on llama.cpp:

Qwen3.5-9B
      │
      │ SafeTensors
      ▼
convert_hf_to_gguf.py
      │
      ▼
Intermediate GGUF
      │
      │ llama-quantize
      ▼
┌────────┬────────┬───────┬──────┐
│Q4_K_M  │Q5_K_M  │ Q6_K  │ Q8_0 │
└────────┴────────┴───────┴──────┘

No additional training or fine-tuning is performed as part of this conversion process.

Quantization changes the numerical representation of the model weights to reduce storage and memory requirements and may affect model quality.

Conversion Workflow & Jupyter Notebook

The Jupyter Notebook used to produce these GGUF files is maintained separately on GitHub:

https://github.com/Lufel3846/Qwen3.5-9B-GGUF-Conversion-Notebook

The repository contains the documented workflow required to reproduce the SafeTensors → GGUF → quantization process.

The notebook was tested on Vast.ai but can be modified for other compatible environments. Platform-specific configuration may need to be adjusted accordingly.

The .ipynb is maintained on GitHub rather than bundled with the model weights in this Hugging Face repository.

Usage

These GGUF files are intended for applications and inference engines with compatible GGUF support, particularly llama.cpp and software built around it.

Example with llama.cpp:

llama-cli \
  -m Qwen3.5-9B-Q5_K_M.gguf \
  -p "Explain how GGUF quantization works."

Runtime parameters should be adjusted according to your hardware, available memory, and desired context length.

Compatibility

GGUF compatibility depends on the version of llama.cpp and its support for the underlying model architecture.

Because both llama.cpp and GGUF continue to evolve, older inference engines may not correctly load files produced by newer versions.

The conversion notebook may also require modifications when used with model architectures other than the one documented and tested by this repository.

If you encounter GGUF compatibility problems, first test with a recent version of llama.cpp or your preferred GGUF runtime.

Reproducibility

The public conversion workflow documents relevant information such as:

  • source model;
  • Python environment;
  • conversion procedure;
  • llama.cpp revision/commit;
  • intermediate GGUF generation;
  • quantization procedure;
  • output quantizations.

See the linked GitHub repository for the conversion implementation and notebook documentation.

Credits

Qwen / Alibaba

The original Qwen3.5-9B model, architecture, and model weights were developed and released by the Qwen Team at Alibaba.

This repository would not exist without their work and release of the original model.

  • Qwen: https://qwen.ai/
  • Original model: https://huggingface.co/Qwen/Qwen3.5-9B

All credit for the original model belongs to its respective authors and contributors.

llama.cpp

GGUF conversion and quantization are performed using tools from the open-source llama.cpp project.

This workflow relies on tooling including:

  • convert_hf_to_gguf.py
  • llama-quantize
  • GGUF infrastructure provided by the project

Project:

https://github.com/ggml-org/llama.cpp

Credit belongs to the llama.cpp maintainers and contributors for the conversion, quantization, GGUF, and local inference tooling used by this workflow.

License

The original Qwen3.5-9B model is distributed under the Apache License 2.0.

These files are converted and quantized derivatives of the original model weights and retain the applicable licensing terms of the original model.

The separately maintained conversion notebook and its source code may have its own repository license. Refer to the linked GitHub repository for the licensing terms applicable to that code.

Please review the original Qwen3.5-9B repository and its license before using or redistributing these files.

Disclaimer

This repository is an unofficial community conversion and is not affiliated with, endorsed by, or maintained by Alibaba, the Qwen Team, Vast.ai, or the llama.cpp project.

Vast.ai was used as the environment in which the conversion workflow was tested. Its use does not imply affiliation, endorsement, or a technical requirement to use Vast.ai.

The purpose of this repository is to provide GGUF variants of the original openly released model for local inference while documenting and crediting the upstream projects used to create them.

Run Lufel6848/Qwen3.5-9B-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models