Views
No views yet
group_size=128, packed in the auto_round
(GPTQ-compatible) format. Formatted with AutoRound for direct, out-of-the-box
serving in vLLM.Solar-MyModel-v1).| Precision | Weight footprint |
|---|---|
| BF16 | 500.6 GB |
| Nota INT4. | 142.9 GB |
| Benchmark | BF16 | Nota INT4 |
|---|---|---|
| Tau2-Bench | 75.20 | 74.04 |
| HLE | 27.88 | 27.15 |
| GPQA Diamond | 86.26 | 85.86 |
| IFBench | 80.00 | 80.54 |
| LiveCodeBench (v5–v6) | 87.03 | 85.50 |
| MMLU-Pro | 86.19 | 86.29 |
| AIME 2026 (EN) | 95.67 | 96.00 |
| IFEval (EN) | 94.09 | 93.35 |
| HMMT | 92.05 | 90.91 |
| KMMLU-Pro | 78.38 | 78.79 |
| HAE-RAE Bench v1.1 | 73.84 | 72.53 |
| AIME (KO) | 97.67 | 97.67 |
| KBL | 75.51 | 75.20 |
| KBank-MMLU | 80.80 | 80.88 |
| KorMedMCQA | 92.99 | 92.85 |
| Avg. | 81.57 | 81.17 |
1uv venv --python 3.12 --seed solar_open2_venv
2source .venv/bin/activate
3
4VLLM_PRECOMPILED_WHEEL_LOCATION="https://github.com/vllm-project/vllm/releases/download/v0.22.0/vllm-0.22.0%2Bcu129-cp38-abi3-manylinux_2_28_x86_64.whl" \
5VLLM_USE_PRECOMPILED=1 \
6uv pip install --reinstall-package vllm --torch-backend=cu129 \
7 "git+https://github.com/UpstageAI/vllm.git@v0.22.0-solar-open2"1vllm serve nota-ai/Solar-Open2-250B-Nota-INT4 \
2 --served-model-name solar-open2-250b \
3 --tensor-parallel-size 4 \
4 --default-chat-template-kwargs '{"think_render_option":"preserved"}' \
5 --reasoning-parser solar_open2 \
6 --tool-call-parser solar_open2 \
7 --enable-auto-tool-choice \
8 --logits-processors vllm.v1.sample.logits_processor.solar_open2:SolarOpen2TemplateLogitsProcessor--tensor-parallel-size according to the number of GPUs available in your serving environment.1curl http://localhost:8000/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -d '{
4 "model": "solar-open2-250b",
5 "messages": [
6 {"role": "user", "content": "What is Upstage?"}
7 ],
8 "max_tokens": 131584,
9 "temperature": 1.0,
10 "top_p": 1.0,
11 "reasoning_effort": "high"
12 }'1@inproceedings{park2026dreammoe,
2 title = {{DREAM-MoE}: Downstream Routing Error-Aware Margin-Preserving Quantization for Mixture-of-Experts Large Language Models},
3 author = {Park, Hancheol and Lee, Geonho and Kim, Tae-Ho},
4 booktitle = {ICML 2026 Workshop on Resource-Adaptive Foundation Model Inference (AdaptFM)},
5 year = {2026},
6 url = {https://openreview.net/forum?id=Wyhqwjl51A},
7}
8
9@inproceedings{lee2026sramoe,
10 title = {{SRA-MoE}: Output-Aware Selective Router Alignment for MoE Quantization},
11 author = {Lee, Geonho and Park, Hancheol and Lee, Seunghyun and Choi, Jungwook and Kim, Tae-Ho},
12 booktitle = {ICML 2026 Workshop on Resource-Adaptive Foundation Model Inference (AdaptFM)},
13 year = {2026},
14 url = {https://openreview.net/forum?id=H0NoX02erJ},
15}