Views
No views yet
| Metrics | Qwen3-235B-A22B-H100-CUDA | Qwen3-235B-A22B-FlagOS-nvidia |
|---|---|---|
| livebench_new | 0.751 | 0.734 |
| aime | 0.833 | 0.833 |
| GPQA | 0.650 | 0.651 |
| MMLU | 0.820 | 0.820 |
| MUSR | 0.661 | 0.664 |
| TheoremQA | 0.276 | 0.266 |
docker pull harbor.baai.ac.cn/flagrelease-public/flagrelease-nvidia-release-model_qwen3-235b-a22b-tree_none-gems_2.2-scale_0.8.0-cx_none-python_3.12.10-torch_2.7.0-pcp_cuda12.8-gpu_nvidia003-arc_amd64-driver_570.158.01:25080115251
2pip install modelscope
3modelscope download --model Qwen/Qwen3-235B-A22B --local_dir /share/Qwen3-235B-A22B
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-235b-a22b-tree_none-gems_2.2-scale_0.8.0-cx_none-python_3.12.10-torch_2.7.0-pcp_cuda12.8-gpu_nvidia003-arc_amd64-driver_570.158.01: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-235B-A22B-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)