Views
No views yet
| Metrics | Qwen3-30B-A3B-H100-CUDA | Qwen3-30B-A3B-FlagOS-nvidia |
|---|---|---|
| LIVEBENCH | 0.575 | 0.566 |
| AIME | 0.800 | 0.833 |
| GPQA | 0.571 | 0.578 |
| MMLU | 0.669 | 0.673 |
| MUSR | 0.648 | 0.638 |
| TheoremQA | 0.121 | 0.119 |
docker pull harbor.baai.ac.cn/flagrelease-public/flagrelease-nvidia-release-model_qwen3-30b-a3b-tree_none-gems_2.2-scale_0.8.0-cx_none-python_3.12.10-torch_2.7.0-pcp_cuda12.2-gpu_nvidia004-arc_amd64-driver_535.183.06:25080115251
2pip install modelscope
3modelscope download --model Qwen/Qwen3-30B-A3B --local_dir /share/Qwen3-30B-A3B
41docker run --rm --init --detach \
2 --net=host --uts=host --ipc=host \
3 --security-opt=seccomp=unconfined \
4 --privileged=true \
5 --ulimit stack=67108864 \
6 --ulimit memlock=-1 \
7 --ulimit nofile=1048576:1048576 \
8 --shm-size=32G \
9 -v /share:/share \
10 --gpus all \
11 --name flagos \
12 harbor.baai.ac.cn/flagrelease-public/flagrelease-nvidia-release-model_qwen3-30b-a3b-tree_none-gems_2.2-scale_0.8.0-cx_none-python_3.12.10-torch_2.7.0-pcp_cuda12.2-gpu_nvidia004-arc_amd64-driver_535.183.06:2508011525 \
13 sleep infinity
14
15docker exec -it flagos bashflagscale serve qwen3import openai
openai.api_key = "EMPTY"
openai.base_url = "http://<server_ip>:9010/v1/"
model = "Qwen3-30B-A3B-FlagOS-nvidia"
messages = [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "What's the weather like today?"}
]
response = openai.chat.completions.create(
model=model,
messages=messages,
stream=False,
)
for item in response:
print(item)