Views
No views yet
| Model | AIME24 | AIME25 |
|---|---|---|
| Qwen3-0.6B-base | 11.3 | 17.0 |
| MobileLLM-R1-1B | 15.5 | 16.3 |
| DeepSeek-Qwen-1.5B | 29.1 | 23.4 |
| FastCurl-1.5B-V3 | 49.6 | 32.9 |
| Open-Nemotron-1.5B | 49.7 | 40.4 |
| Mobile-ReasoningLLM-v0-1.5B | 63.1 | 49.6 |
| Mobile-Flash-ReasoningLLM-v0-1.5B | 73.7 | 63.8 |
| Qwen3-1.7B | 47.0 | 37.0 |
transformers, torch, vLLM or TensorRT-LLMhug environment)1import transformers
2import torch
3model_id = "deepgo/Mobile-ReasoningLLM-v0.1-1.5B"
4pipeline = transformers.pipeline(
5 "text-generation",
6 model=model_id,
7 model_kwargs={"torch_dtype": torch.bfloat16},
8 device_map="auto",
9)
10# Math problem prompt
11prompt = """Solve the following math problem. Make sure to put the answer (and only answer) inside \\boxed{}."""
12temperature=0.7 max-length=48,000 is recommend.