CoolFace
Modelpublic

tencent/Youtu-LLM-2B-GGUF

sourceHugging Faceotherupdated 9mo agoView on Hugging Face
30likes383downloads
Model Card

<div align="center">

<img src="assets/youtu-llm-logo.png" alt="Youtu-LLM Logo" height="100px">

๐Ÿ“ƒ License โ€ข ๐Ÿ’ป Code โ€ข ๐Ÿ“‘ Technical Report โ€ข ๐Ÿ“Š Benchmarks โ€ข ๐Ÿš€ Getting Started

</div>

๐ŸŽฏ Brief Introduction

Youtu-LLM is a new, small, yet powerful LLM, contains only 1.96B parameters, supports 128k long context, and has native agentic talents. On general evaluations, Youtu-LLM significantly outperforms SOTA LLMs of similar size in terms of Commonsense, STEM, Coding and Long Context capabilities; in agent-related testing, Youtu-LLM surpasses larger-sized leaders and is truly capable of completing multiple end2end agent tasks.

Youtu-LLM has the following features:

  • โ€”Type: Autoregressive Causal Language Models with Dense MLA
  • โ€”Release versions: Base and Instruct
  • โ€”Number of Parameters: 1.96B
  • โ€”Number of Layers: 32
  • โ€”Number of Attention Heads (MLA): 16 for Q/K/V
  • โ€”MLA Rank: 1,536 for Q, 512 for K/V
  • โ€”MLA Dim: 128 for QK Nope, 64 for QK Rope, and 128 for V
  • โ€”Context Length: 131,072
  • โ€”Vocabulary Size: 128,256

๐Ÿค— Model Download

Model NameDescriptionDownload
Youtu-LLM-2B-BaseBase model of Youtu-LLM-2B๐Ÿค— Model
Youtu-LLM-2BInstruct model of Youtu-LLM-2B๐Ÿค— Model
Youtu-LLM-2B-GGUFInstruct model of Youtu-LLM-2B, in GGUF format๐Ÿค— Model

<a id="benchmarks"></a>

๐Ÿ“Š Performance Comparisons

Instruct Model

<img src="assets/generalagenticinstruct.png" alt="Comparison between Youtu-LLM-2B and baselines" height="260px">

General Benchmarks
BenchmarkDeepSeek-R1-Distill-Qwen-1.5BQwen3-1.7BSmolLM3-3BQwen3-4BDeepSeek-R1-Distill-Llama-8BYoutu-LLM-2B
Commonsense Knowledge Reasoning
MMLU-Redux53.0%74.1%75.6%83.8%<u>78.1%</u>75.8%
MMLU-Pro36.5%54.9%53.0%69.1%57.5%<u>61.6%</u>
Instruction Following & Text Reasoning
IFEval29.4%70.4%60.4%83.6%34.6%<u>81.2%</u>
DROP41.3%72.5%72.0%<u>82.9%<u>73.1%86.7%
MUSR43.8%56.6%54.1%60.5%<u>59.7%</u>57.4%
STEM
MATH-50084.8%89.8%91.8%95.0%90.8%<u>93.7%</u>
AIME 2430.2%44.2%46.7%73.3%52.5%<u>65.4%</u>
AIME 2523.1%37.1%34.2%64.2%34.4%<u>49.8%</u>
GPQA-Diamond33.6%36.9%43.8%55.2%45.5%<u>48.0%</u>
BBH31.0%69.1%76.3%87.8%<u>77.8%</u>77.5%
Coding
HumanEval64.0%84.8%79.9%<u>95.4%<u>88.1%95.9%
HumanEval+59.5%76.2%74.7%<u>87.8%</u>82.5%89.0%
MBPP51.5%80.5%66.7%92.3%73.9%<u>85.0%</u>
MBPP+44.2%67.7%56.7%77.6%61.0%<u>71.7%</u>
LiveCodeBench v619.8%30.7%30.8%48.5%36.8%<u>43.7%</u>
Agentic Benchmarks
BenchmarkQwen3-1.7BSmolLM3-3BQwen3-4BYoutu-LLM-2B
Deep Research
GAIA11.4%11.7%<u>25.5%</u>33.9%
xbench11.7%13.9%<u>18.4%</u>19.5%
Code
SWE-Bench-Verified0.6%<u>7.2%</u>5.7%17.7%
EnConda-Bench10.8%3.5%<u>16.1%</u>21.5%
Tool
BFCL V355.5%31.5%61.7%<u>58.0%</u>
ฯ„ยฒ-Bench2.6%9.7%<u>10.9%</u>15.0%

<a id="quickstart"></a>

๐Ÿš€ Quick Start

This guide will help you quickly deploy and invoke the Youtu-LLM-2B model. This model supports "Reasoning Mode", enabling it to generate higher-quality responses through Chain of Thought (CoT).

Server Example

Enable Reasoning Mode (default):

bash
./llama-server -m Youtu-LLM-2B-F16.gguf \
  --port 8080 \
  --host 0.0.0.0

Disable Reasoning Mode:

bash
./llama-server -m Youtu-LLM-2B-F16.gguf \
  --port 8080 \
  --host 0.0.0.0 \
  --reasoning-budget 0

Key Configuration Details

Reasoning Mode Toggle

Controlled via the --reasoning-budget parameter:

  • โ€”Default (no flag): Enables Chain of Thought; ideal for complex logic and reasoning tasks. Response includes reasoning_content field.
  • โ€”`--reasoning-budget 0`: Disables reasoning; faster response time, suitable for simple conversations.
Recommended Decoding Parameters
ParameterReasoning ModeNormal Mode
temperature1.0 (Maintains creativity)0.7 (More stable results)
top_p0.950.8
top_k2020
repetition_penalty1.05-
Tip: When using Reasoning Mode, a higher temperature helps the model perform deeper, more divergent thinking.

๐Ÿ“š Citation

If you find our work useful in your research, please consider citing the following paper:

bibtex
@article{youtu-llm,
  title={Youtu-LLM: Unlocking the Native Agentic Potential for Lightweight Large Language Models},
  author={Tencent Youtu Lab},
  year={2025},
  eprint={2512.24618},
  archivePrefix={arXiv},
  primaryClass={cs.CL},
  url={https://arxiv.org/abs/2512.24618}, 
}