Text Generation
Transformers
Safetensors
English
Korean
solar_open
upstage
solar
Mixture of Experts
100b
llm
conversational
Instructions to use upstage/Solar-Open-100B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use upstage/Solar-Open-100B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="upstage/Solar-Open-100B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("upstage/Solar-Open-100B") model = AutoModelForCausalLM.from_pretrained("upstage/Solar-Open-100B") 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]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use upstage/Solar-Open-100B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "upstage/Solar-Open-100B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "upstage/Solar-Open-100B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/upstage/Solar-Open-100B
- SGLang
How to use upstage/Solar-Open-100B 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 "upstage/Solar-Open-100B" \ --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": "upstage/Solar-Open-100B", "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 "upstage/Solar-Open-100B" \ --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": "upstage/Solar-Open-100B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use upstage/Solar-Open-100B with Docker Model Runner:
docker model run hf.co/upstage/Solar-Open-100B
Link model card to technical report and project page
#22
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -2,16 +2,17 @@
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
- ko
|
|
|
|
| 5 |
license: other
|
| 6 |
license_name: solar-apache-2.0
|
|
|
|
| 7 |
tags:
|
| 8 |
- upstage
|
| 9 |
- solar
|
| 10 |
- moe
|
| 11 |
- 100b
|
| 12 |
- llm
|
| 13 |
-
|
| 14 |
-
pipeline_tag: text-generation
|
| 15 |
---
|
| 16 |
|
| 17 |
<p align="center">
|
|
@@ -22,6 +23,8 @@ pipeline_tag: text-generation
|
|
| 22 |
|
| 23 |
**Solar Open** is Upstage's flagship **102B-parameter** large language model, trained **entirely from scratch** and released under the **Solar-Apache License 2.0** (see [LICENSE](#license) for details). As a **Mixture-of-Experts (MoE)** architecture, it delivers enterprise-grade performance in reasoning, instruction-following, and agentic capabilities—all while prioritizing transparency and customization for the open-source community.
|
| 24 |
|
|
|
|
|
|
|
| 25 |
## Highlights
|
| 26 |
|
| 27 |
* **MoE Architecture (102B / 12B):** Built on a Mixture-of-Experts architecture with **102B total / 12B active parameters**. This design delivers the knowledge depth of a massive model with the inference speed and cost-efficiency of a much smaller model.
|
|
@@ -42,7 +45,7 @@ pipeline_tag: text-generation
|
|
| 42 |
* **Hardware Requirements:**
|
| 43 |
* **Minimum:** 4x NVIDIA A100 (80GB)
|
| 44 |
|
| 45 |
-
For more details, please refer to [Solar Open Technical Report](
|
| 46 |
|
| 47 |
## License
|
| 48 |
This repository contains both model weights and code,
|
|
@@ -222,10 +225,11 @@ The official API service for Solar Open is scheduled to launch publicly on **Jan
|
|
| 222 |
If you use Solar Open in your research, please cite:
|
| 223 |
|
| 224 |
```bibtex
|
| 225 |
-
@
|
| 226 |
-
|
| 227 |
-
|
| 228 |
-
|
| 229 |
-
|
|
|
|
| 230 |
}
|
| 231 |
```
|
|
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
- ko
|
| 5 |
+
library_name: transformers
|
| 6 |
license: other
|
| 7 |
license_name: solar-apache-2.0
|
| 8 |
+
pipeline_tag: text-generation
|
| 9 |
tags:
|
| 10 |
- upstage
|
| 11 |
- solar
|
| 12 |
- moe
|
| 13 |
- 100b
|
| 14 |
- llm
|
| 15 |
+
arxiv: 2601.07022
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
<p align="center">
|
|
|
|
| 23 |
|
| 24 |
**Solar Open** is Upstage's flagship **102B-parameter** large language model, trained **entirely from scratch** and released under the **Solar-Apache License 2.0** (see [LICENSE](#license) for details). As a **Mixture-of-Experts (MoE)** architecture, it delivers enterprise-grade performance in reasoning, instruction-following, and agentic capabilities—all while prioritizing transparency and customization for the open-source community.
|
| 25 |
|
| 26 |
+
[**Technical Report**](https://huggingface.co/papers/2601.07022) | [**Project Page**](https://upstage.ai)
|
| 27 |
+
|
| 28 |
## Highlights
|
| 29 |
|
| 30 |
* **MoE Architecture (102B / 12B):** Built on a Mixture-of-Experts architecture with **102B total / 12B active parameters**. This design delivers the knowledge depth of a massive model with the inference speed and cost-efficiency of a much smaller model.
|
|
|
|
| 45 |
* **Hardware Requirements:**
|
| 46 |
* **Minimum:** 4x NVIDIA A100 (80GB)
|
| 47 |
|
| 48 |
+
For more details, please refer to the [Solar Open Technical Report](https://huggingface.co/papers/2601.07022).
|
| 49 |
|
| 50 |
## License
|
| 51 |
This repository contains both model weights and code,
|
|
|
|
| 225 |
If you use Solar Open in your research, please cite:
|
| 226 |
|
| 227 |
```bibtex
|
| 228 |
+
@article{park2025solar,
|
| 229 |
+
title={Solar Open Technical Report},
|
| 230 |
+
author={Sungrae Park and Sanghoon Kim and Jungho Cho and Gyoungjin Gim and Dawoon Jung and Mikyoung Cha and Eunhae Choo and Taekgyu Hong and Minbyul Jeong and SeHwan Joo and Minsoo Khang and Eunwon Kim and Minjeong Kim and Sujeong Kim and Yunsu Kim and Hyeonju Lee and Seunghyun Lee and Sukyung Lee and Siyoung Park and Gyungin Shin and Inseo Song and Wonho Song and Seonghoon Yang and Seungyoun Yi and Sanghoon Yoon and Jeonghyun Ko and Seyoung Song and Keunwoo Choi and Hwalsuk Lee and Sunghun Kim and Du-Seong Chang and Kyunghyun Cho and Junsuk Choe and Hwaran Lee and Jae-Gil Lee and KyungTae Lim and Alice Oh},
|
| 231 |
+
journal={arXiv preprint arXiv:2601.07022},
|
| 232 |
+
year={2025},
|
| 233 |
+
url={https://huggingface.co/papers/2601.07022}
|
| 234 |
}
|
| 235 |
```
|