Views
No views yet
| Model | Parameters | Quantization | Size | Architecture |
|---|---|---|---|---|
| Youtu-FT-V1-4B | 4.2B | Q4_K_M | 2.7 GB | Dense |
| Youtu-FT-V1-9B | 9.0B | Q4_K_M | 5.6 GB | Dense |
| Youtu-FT-V1-35B-A3B | 35B (3B active) | Q4_K_M | 21 GB | MoE |
temperature=0.7, top_p=0.9/api/generate raw mode (bypassing thinking tokens) on the same 50-sample subsets with identical few-shot prompts. This provides a fair comparison across model sizes without the confounding effect of reasoning-chain generation.| Benchmark | Shot | Youtu-FT-V1-4B | Youtu-FT-V1-9B | Youtu-FT-V1-35B-A3B |
|---|---|---|---|---|
| ARC-Challenge | 3-shot | 94.0% | 96.0% | 96.0% |
| HellaSwag | 2-shot | 62.0% | 42.0% | 44.0% |
| PIQA | 1-shot | 58.0% | 82.0% | 92.0% |
| WinoGrande | 0-shot | 58.0% | 66.0% | 52.0% |
| Average | — | 68.0% | 71.5% | 71.0% |
Note on thinking mode: All models in this series generate reasoning chains by default (thinking tokens). For benchmarks we used raw mode (raw: true) to obtain clean completions. In chat applications, you may observe additional<think>blocks that contain the model's reasoning process. This can be configured via the Ollamarawoption or the--no-thinkflag in llama.cpp.
ollama run hf.co/gatilin/Youtu-FT-V1-9B1curl http://localhost:11434/api/generate -d '{
2 "model": "hf.co/gatilin/Youtu-FT-V1-9B",
3 "prompt": "你好",
4 "raw": true
5}'1# Install
2curl -LsSf https://llama.app/install.sh | sh
3
4# Run with the model
5llama serve -hf gatilin/Youtu-FT-V1-9B
6llama cli -hf gatilin/Youtu-FT-V1-9B1from llama_cpp import Llama
2
3llm = Llama.from_pretrained(
4 repo_id="gatilin/Youtu-FT-V1-9B",
5 filename="youtu-ft-v1-9b-Q4_K_M.gguf",
6)
7
8output = llm.create_chat_completion(
9 messages=[{"role": "user", "content": "你好,请介绍一下自己"}]
10)docker model run hf.co/gatilin/Youtu-FT-V1-9B| File | Description |
|---|---|
youtu-ft-v1-9b-Q4_K_M.gguf | GGUF model weights (Q4_K_M, 5.6 GB) |
config.json | Model format and family metadata |
params.json | Default sampling parameters (temperature=0.7, top_p=0.9) |
template.txt | Chat template for the model |
Modelfile | Ollama Modelfile for local use |
manifest.json | Ollama manifest for verification |
LICENSE | MIT license |
1@misc{gatilin2025youtuft,
2 title={Youtu-FT-V1: Fine-Tuned Reasoning Models},
3 author={gatilin},
4 year={2026},
5 url={https://huggingface.co/gatilin/Youtu-FT-V1-9B}
6}