nota-ai/Solar-Open2-250B-Nota-NVFP4

Hugging Face Models Trending 模型

摘要

Nota AI 发布了 Upstage 的 Solar Open2 250B MoE 模型的 4 位量化版本,使用专有的 NVFP4 量化技术,需要 NVIDIA Blackwell GPU。

任务:文本生成 标签: vllm, safetensors, solar_open2, 量化, nvfp4, moe, nota, 文本生成, 对话, 自定义代码, en, ko, ja, base_model:upstage/Solar-Open2-250B, base_model:quantized:upstage/Solar-Open2-250B, license:其他, 8位, compressed-tensors, region:us
查看原文
查看缓存全文

缓存时间: 2026/07/29 09:52

nota-ai/Solar-Open2-250B-Nota-NVFP4 · Hugging Face

来源:https://huggingface.co/nota-ai/Solar-Open2-250B-Nota-NVFP4
Nota AI (https://www.nota.ai/) 发布了对 Upstage (https://www.upstage.ai/) 的 Solar Open2 250B (https://huggingface.co/upstage/Solar-Open2-250B) 进行 4 比特量化的版本,该版本采用了 Nota AI 专为混合专家(MoE)大语言模型开发的量化技术。

https://huggingface.co/nota-ai/Solar-Open2-250B-Nota-NVFP4#highlights亮点

  • NVFP4 (4 比特浮点,W4A4)——group\_size=16,以 llm‑compressor (compressed-tensors) 格式打包,可直接在 vLLM (https://github.com/vllm-project/vllm) 中提供服务。权重和激活值均量化为 4 比特浮点。

    需要 NVIDIA Blackwell 架构。 NVFP4 依赖于 Blackwell 架构(如 B200 / GB200)中引入的 FP4 张量核心,因此推理必须在 Blackwell 类 GPU 上运行。较早的架构(Hopper、Ada、Ampere)不支持 NVFP4 执行。

  • Nota AI 专有 MoE 量化框架。 此版本基于 Nota AI 开发的一系列技术,旨在于 MoE 架构的低比特激进量化下保持模型质量:
    • 一种针对 MoE 的校准数据集构建方法,在 NVIDIA Nemotron 黑客马拉松中获得了所有赛道第一名
    • DREAM-MoE (https://openreview.net/pdf?id=Wyhqwjl51A) 和 SRA-MoE (https://openreview.net/pdf?id=H0NoX02erJ),这是 Nota AI 提出的两种量化算法(发表于 ICML 2026 Workshop on AdaptFM),能够保留 MoE 路由决策并在量化过程中对齐专家路由行为。

https://huggingface.co/nota-ai/Solar-Open2-250B-Nota-NVFP4#license许可证

Solar Open 2 根据 Upstage Solar License (https://huggingface.co/upstage/Solar-Open2-250B/blob/main/LICENSE) 分发。

对衍生 AI 模型的关键要求(使用 Solar Open 2 创建/训练/微调/蒸馏/改进):

  • 命名: 在模型名称前加上“Solar”(例如 Solar-MyModel-v1)。
  • 署名: 在相关公开材料中醒目地展示“Built with Solar”。
  • 通知: 在衍生模型中包含一份 Upstage Solar License 副本。

https://huggingface.co/nota-ai/Solar-Open2-250B-Nota-NVFP4#performance性能

https://huggingface.co/nota-ai/Solar-Open2-250B-Nota-NVFP4#weight-footprint权重占用

精度权重占用
BF16500.6 GB
Nota NVFP4153.3 GB

https://huggingface.co/nota-ai/Solar-Open2-250B-Nota-NVFP4#benchmarks基准测试

基准测试BF16Nota NVFP4
Tau2-Bench75.2075.08
HLE27.8827.66
GPQA Diamond86.2685.45
IFBench80.0081.02
LiveCodeBench (v5–v6)87.0388.55
MMLU-Pro86.1986.15
AIME 2026 (EN)95.6796.67
IFEval (EN)94.0992.61
HMMT92.0590.15
KMMLU-Pro78.3877.93
HAE-RAE Bench v1.173.8472.84
AIME (KO)97.6797.00
KBL75.5175.40
KBank-MMLU80.8080.68
KorMedMCQA92.9993.05
平均81.5781.35

https://huggingface.co/nota-ai/Solar-Open2-250B-Nota-NVFP4#quick-start快速开始

该模型以 NVFP4 (compressed-tensors) 格式打包,可直接在 Blackwell 类 GPU 上通过 vLLM 提供服务:

uv venv --python 3.12 --seed solar_open2_venv
source .venv/bin/activate

VLLM_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" \
VLLM_USE_PRECOMPILED=1 \
uv pip install --reinstall-package vllm --torch-backend=cu129 \
  "git+https://github.com/UpstageAI/[email protected]"
vllm serve nota-ai/Solar-Open2-250B-Nota-NVFP4 \
  --served-model-name solar-open2-250b \
  --tensor-parallel-size 4 \
  --default-chat-template-kwargs '{"think_render_option":"preserved"}' \
  --reasoning-parser solar_open2 \
  --tool-call-parser solar_open2 \
  --enable-auto-tool-choice \
  --logits-processors vllm.v1.sample.logits_processor.solar_open2:SolarOpen2TemplateLogitsProcessor
  • 根据服务环境中可用的 GPU 数量设置 --tensor-parallel-size
  • 查看原始模型卡片以了解提示格式、解析器配置及更多细节。

发送聊天补全请求:

curl http://localhost:8000/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "solar-open2-250b",
    "messages": [
      {"role": "user", "content": "What is Upstage?"}
    ],
    "max_tokens": 131584,
    "temperature": 1.0,
    "top_p": 1.0,
    "reasoning_effort": "high"
  }'

https://huggingface.co/nota-ai/Solar-Open2-250B-Nota-NVFP4#citation引用

@inproceedings{park2026dreammoe,
  title     = {{DREAM-MoE}: Downstream Routing Error-Aware Margin-Preserving Quantization for Mixture-of-Experts Large Language Models},
  author    = {Park, Hancheol and Lee, Geonho and Kim, Tae-Ho},
  booktitle = {ICML 2026 Workshop on Resource-Adaptive Foundation Model Inference (AdaptFM)},
  year      = {2026},
  url       = {https://openreview.net/forum?id=Wyhqwjl51A},
}

@inproceedings{lee2026sramoe,
  title     = {{SRA-MoE}: Output-Aware Selective Router Alignment for MoE Quantization},
  author    = {Lee, Geonho and Park, Hancheol and Lee, Seunghyun and Choi, Jungwook and Kim, Tae-Ho},
  booktitle = {ICML 2026 Workshop on Resource-Adaptive Foundation Model Inference (AdaptFM)},
  year      = {2026},
  url       = {https://openreview.net/forum?id=H0NoX02erJ},
}

相似文章

nvidia/GLM-5.2-NVFP4

Hugging Face Models Trending

NVIDIA 发布了 GLM-5.2-NVFP4,这是 ZAI 的 GLM-5.2 MoE 语言模型的量化版本,使用 Model Optimizer 进行了优化,适用于 NVIDIA Blackwell GPU 上的推理。

RedHatAI/Qwen3.6-35B-A3B-NVFP4

Hugging Face Models Trending

Red Hat AI 发布 NVFP4 量化的 35B MoE 版 Qwen3.6,在保持 96.28% GSM8K 精度的同时,通过 vLLM 实现 4-bit 推理。

unsloth/Qwen3.6-27B-NVFP4

Hugging Face Models Trending

Unsloth 发布了 Qwen3.6-27B 的 NVFP4 量化检查点,声称吞吐量提升 2.5 倍,精度与 FP8 和 BF16 相当,并提供了在 24GB GPU 上通过 vLLM 运行的说明。

nvidia/Qwen3.6-27B-NVFP4

Hugging Face Models Trending

NVIDIA发布了Qwen3.6-27B-NVFP4,这是阿里巴巴Qwen3.6-27B模型的量化版本,针对在NVIDIA GPU上的部署进行了优化,支持文本、图像和视频输入。