Abiray/Nanbeige4.2-3B-GGUF overview
Nanbeige4.2 3B GGUF Quants This repository contains GGUF quantizations for Nanbeige/Nanbeige4.2 3B https://huggingface.co/Nanbeige/Nanbeige4.2 3B . Original Mo…
Runs locally from ~2.02 GB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).
Repository Files & Downloads
| File | Type | Quantization | Size | Link |
|---|---|---|---|---|
| Nanbeige4.2-3B-Q3_K_M.gguf | GGUF | Q3_K_M | 2.02 GB | Download |
| Nanbeige4.2-3B-Q4_K_M.gguf | GGUF | Q4_K_M | 2.40 GB | Download |
| Nanbeige4.2-3B-Q4_K_S.gguf | GGUF | Q4_K_S | 2.33 GB | Download |
| Nanbeige4.2-3B-Q5_K_M.gguf | GGUF | Q5_K_M | 2.78 GB | Download |
| Nanbeige4.2-3B-Q6_K.gguf | GGUF | Q6_K | 3.19 GB | Download |
| Nanbeige4.2-3B-Q8_0.gguf | GGUF | Q8_0 | 4.13 GB | Download |
Model Details
| Model ID | Abiray/Nanbeige4.2-3B-GGUF |
|---|---|
| Author | Abiray |
| Pipeline | text-generation |
| License | apache-2.0 |
| Base model | Nanbeige/Nanbeige4.2-3B |
| Last modified | 2026-07-22T09:16:17.000Z |
Model README
---
base_model: Nanbeige/Nanbeige4.2-3B
library_name: gguf
license: apache-2.0
pipeline_tag: text-generation
language:
- en
- zh
tags:
- gguf
- quantized
- llama.cpp
- nanbeige
- code
- agent
---
Nanbeige4.2-3B - GGUF Quants
This repository contains GGUF quantizations for Nanbeige/Nanbeige4.2-3B.
- Original Model: Nanbeige/Nanbeige4.2-3B
- Base Architecture: Looped Transformer (3B non-embedding parameters)
- Quantization Format: GGUF (
Q4_K_M,Q4_K_S,Q5_K_M,Q6_K,Q8_0)
---
Available Files & Quantization Details
| File Name | Size | Quant Method | Description |
|---|---|---|---|
| Nanbeige4.2-3B-Q4_K_M.gguf | ~2.57 GB | Q4_K_M | 4-bit medium. Recommended balance of speed, memory usage, and quality. |
| Nanbeige4.2-3B-Q4_K_S.gguf | ~2.50 GB | Q4_K_S | 4-bit small. Slightly lower memory footprint. |
| Nanbeige4.2-3B-Q5_K_M.gguf | ~2.99 GB | Q5_K_M | 5-bit medium. Higher precision with slight increase in size. |
| Nanbeige4.2-3B-Q6_K.gguf | ~3.42 GB | Q6_K | 6-bit quantization. Very close to FP16 performance. |
| Nanbeige4.2-3B-Q8_0.gguf | ~4.43 GB | Q8_0 | 8-bit quantization. Maximum quality for GGUF. |
---
Usage Guide
1. Running with llama.cpp
For full support, clone the official or nanbeige42 fork of llama.cpp:
# Clone the repository with Nanbeige support
git clone -b nanbeige42 [https://github.com/Nanbeige/llama.cpp.git](https://github.com/Nanbeige/llama.cpp.git)
cd llama.cpp
# Build with CUDA support
cmake -B build -DGGML_CUDA=ON
cmake --build build --config Release -j
# Download a model from this repository
huggingface-cli download Abiray/Nanbeige4.2-3B-GGUF Nanbeige4.2-3B-Q4_K_M.gguf --local-dir .
# Run CLI inference
./build/bin/llama-cli -m Nanbeige4.2-3B-Q4_K_M.gguf -ngl 99 -p "Which number is bigger, 9.11 or 9.8?"Run Abiray/Nanbeige4.2-3B-GGUF with guIDE
Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.
Source: Hugging Face · Compare models