Text Generation
Transformers
Safetensors
English
qwen2
math
code
reasoning
gpqa
instruction-following
conversational
Eval Results
text-generation-inference
Instructions to use WeiboAI/VibeThinker-3B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use WeiboAI/VibeThinker-3B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="WeiboAI/VibeThinker-3B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("WeiboAI/VibeThinker-3B") model = AutoModelForCausalLM.from_pretrained("WeiboAI/VibeThinker-3B") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Inference
- Local Apps Settings
- vLLM
How to use WeiboAI/VibeThinker-3B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "WeiboAI/VibeThinker-3B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WeiboAI/VibeThinker-3B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/WeiboAI/VibeThinker-3B
- SGLang
How to use WeiboAI/VibeThinker-3B with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "WeiboAI/VibeThinker-3B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WeiboAI/VibeThinker-3B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "WeiboAI/VibeThinker-3B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WeiboAI/VibeThinker-3B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use WeiboAI/VibeThinker-3B with Docker Model Runner:
docker model run hf.co/WeiboAI/VibeThinker-3B
Add evaluation results from model card benchmark tables
#21
by SaylorTwift HF Staff - opened
.eval_results/vibethinker-3b.yaml
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Evaluation results for WeiboAI/VibeThinker-3B
|
| 2 |
+
# Extracted from the model card benchmark tables (pictures/VibeThiinker-3B.png, pictures/VibeThinker-3B+CLR.png)
|
| 3 |
+
# https://huggingface.co/WeiboAI/VibeThinker-3B
|
| 4 |
+
# Paper: https://huggingface.co/papers/2606.16140
|
| 5 |
+
|
| 6 |
+
# ---------------------------------------------------------------------------
|
| 7 |
+
# Mathematics
|
| 8 |
+
# ---------------------------------------------------------------------------
|
| 9 |
+
|
| 10 |
+
# AIME 2026 - 94.3
|
| 11 |
+
- dataset:
|
| 12 |
+
id: MathArena/aime_2026
|
| 13 |
+
task_id: MathArena/aime_2026
|
| 14 |
+
value: 94.3
|
| 15 |
+
date: "2026-06-19"
|
| 16 |
+
source:
|
| 17 |
+
url: https://huggingface.co/WeiboAI/VibeThinker-3B
|
| 18 |
+
name: VibeThinker-3B model card evaluation table
|
| 19 |
+
notes: "Evaluated with vLLM, temperature=1.0, top_p=0.95, top_k=-1."
|
| 20 |
+
|
| 21 |
+
# ---------------------------------------------------------------------------
|
| 22 |
+
# Knowledge / Reasoning
|
| 23 |
+
# ---------------------------------------------------------------------------
|
| 24 |
+
|
| 25 |
+
# GPQA Diamond - 70.2
|
| 26 |
+
- dataset:
|
| 27 |
+
id: Idavidrein/gpqa
|
| 28 |
+
task_id: diamond
|
| 29 |
+
value: 70.2
|
| 30 |
+
date: "2026-06-19"
|
| 31 |
+
source:
|
| 32 |
+
url: https://huggingface.co/WeiboAI/VibeThinker-3B
|
| 33 |
+
name: VibeThinker-3B model card evaluation table
|
| 34 |
+
notes: "Evaluated with vLLM, temperature=1.0, top_p=0.95, top_k=-1."
|