Views
No views yet
compressed-tensors (ensuring backend compatibility with HF and vLLM)| Solar-Open-100B | Nota MoE Quantization (Ours) | AutoRound | |
|---|---|---|---|
| PPL (WikiText-2)↓ | 6.06 | 6.90 | 7.22 |
| MMLU-Pro↑ | 73.91 | 62.53 | 61.56 |
| GPQA-Diamond↑ | 58.08 | 45.96 | 42.42 |
| General Evaluation Benchmarks | 75.77 | 73.94 | 73.74 |
| Solar-Open-100B | Nota MoE Quantization (Ours) |
|---|---|
| 191.2 GB | 58.7 GB |
1uv venv --python 3.12 --seed
2source .venv/bin/activatepip install vllm==0.17.0patches folder of the repository containing the model weights into the vllm/model_executor/models directory inside the folder where vLLM is installed (typically lib/python3.xx/site-packages).1vllm serve nota-ai/Solar-Open-100B-NotaMoEQuant-NVFP4 \
2 --served-model-name Solar-Open \
3 --trust-remote-code \
4 --tensor-parallel-size 1 1from openai import OpenAI
2
3client = OpenAI(
4 base_url="http://0.0.0.0:8000/v1",
5 api_key="EMPTY"
6)
7
8response = client.chat.completions.create(
9 model="Solar-Open",
10 messages=[
11 {"role": "user", "content": "who are you?"}
12 ],
13 temperature=0.8,
14 top_p=0.95,
15)
16
17print(response.choices[0].message.content)