Instructions to use Qwen/Qwen3.8-2.4T-A95B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Qwen/Qwen3.8-2.4T-A95B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Qwen/Qwen3.8-2.4T-A95B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen3.8-2.4T-A95B") model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3.8-2.4T-A95B", device_map="auto") 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]:])) - Inference
- HuggingChat
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Qwen/Qwen3.8-2.4T-A95B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Qwen/Qwen3.8-2.4T-A95B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Qwen/Qwen3.8-2.4T-A95B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Qwen/Qwen3.8-2.4T-A95B
- SGLang
How to use Qwen/Qwen3.8-2.4T-A95B 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 "Qwen/Qwen3.8-2.4T-A95B" \ --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": "Qwen/Qwen3.8-2.4T-A95B", "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 "Qwen/Qwen3.8-2.4T-A95B" \ --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": "Qwen/Qwen3.8-2.4T-A95B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Qwen/Qwen3.8-2.4T-A95B with Docker Model Runner:
docker model run hf.co/Qwen/Qwen3.8-2.4T-A95B
Add Terminal-Bench evaluation results
1
#38 opened 6 days ago
by
SaylorTwift
ignore what’s going on in #26
👀 1
#37 opened 7 days ago
by
Hellomaniamcoollol
notice how they all do good at around 2t
11
#36 opened 13 days ago
by
wesdoffical
I researched the practical vLLM configs for Qwen3.8-2.4T-A95B — a few findings that surprised me more...
🔥❤️ 4
#35 opened 13 days ago
by
hexgridcloud
Qwen3.8 16B
👍🔥 16
13
#34 opened 13 days ago
by
Banaxi-Tech
Хочу gguf на 4_K_M квантования
#33 opened 13 days ago
by
deluxenew
Qwen3.8-A50B: Can We Distill A95B into a 50B MoE with 5–12B Active Parameters?
🔥 12
2
#32 opened 13 days ago
by
88AtlasClaw
can you do 99999999999999B-A0.00000000000001B
🚀 2
5
#31 opened 13 days ago
by
inikishev
I just checked Qwen3.8-2.4T-A95B for singular matrices and exploded condition numbers
👍 2
6
#29 opened 13 days ago
by
LuffyTheFox
对阿里太失望了
👍 6
5
#28 opened 14 days ago
by
Keeperorowner
已收录到 trending.md
#27 opened 14 days ago
by
trending-md
wtf is alibaba doing 😭✌️
🤗 1
67
#26 opened 14 days ago
by
Hellomaniamcoollol
Small models requests
👍❤️ 5
#25 opened 14 days ago
by
jezzza1401
Add WildClawBench evaluation result
❤️ 2
#24 opened 14 days ago
by
ChrisDing1105
建议延续马云的思想将千问团队剥离出来独立发展,借助资本做大做强
👍 1
1
#23 opened 14 days ago
by
emei8
Looking forward to a ternary GGUF for this version
2
#22 opened 14 days ago
by
kreels
Small models are benchmark for the algorithm
❤️ 2
1
#21 opened 14 days ago
by
Duonglv
Simply thank you :)
#19 opened 14 days ago
by
cyberax
122b a10b?
❤️👍 25
8
#17 opened 14 days ago
by
TheBigBlockPC
We are waiting for 35B A3b model qwen 3.8! It will be the killer of all counterparts!
🚀 31
9
#15 opened 15 days ago
by
Mithnick
Not great, not horrible
🚀 4
2
#14 opened 15 days ago
by
tandaraSa
Huge disappointment: Qwen 3.8 open weights are text-only and stripped of Qwen 3.8 Max features (No Vision, No 1M Context)
👀➕ 25
26
#13 opened 15 days ago
by
NodeLinker
978 Downloads? 🤔
😎🔥 6
15
#12 opened 15 days ago
by
cimilarkes
Why am I not suprised
👀➕ 4
#11 opened 15 days ago
by
darkmatter2222
Will this run on my phone?
🧠🔥 11
8
#10 opened 15 days ago
by
Doctor-Chad-PhD
122b please
👀❤️ 16
4
#9 opened 15 days ago
by
Kosh69
Text-only? Plans for multimodal release?
😔👀 4
2
#7 opened 15 days ago
by
sleepyeldrazi
Add community evaluation results for DEEP-SWE, GPQA, HLE, SWE-BENCH_PRO
❤️🤗 4
#6 opened 15 days ago
by
nielsr
OMG
🔥❤️ 23
13
#5 opened 15 days ago
by
Banaxi-Tech
27B where
🔥🚀 14
9
#4 opened 15 days ago
by
pengzhi27
NEW MODEL
🚀🧠 5
#3 opened 15 days ago
by
GGUFGuy
No 27B?
👍🚀 7
5
#2 opened 15 days ago
by
Borna123454321
27b when?
🚀 10
17
#1 opened 15 days ago
by
tigerjjw53