Views
No views yet
Qwen/Qwen3-30B-A3B-Instruct-2507 (Mixture-of-Experts)Qwen3MoeForCausalLMminer/vllm-miner)temperature=0.7, top_p=0.8, top_k=20, min_p=0) via lm-eval-harness on vLLM.| Model | MMLU-Pro |
|---|---|
| Original | 77.88% |
| Pearl | 77.33% |
pearld with RPC enabled.uvpearld node with RPC credentialsdocker buildx build -t vllm_miner . -f miner/vllm-miner/Dockerfile1docker run --rm -it --gpus all \
2 -p 8000:8000 -p 8337:8337 -p 8339:8339 \
3 -e PEARLD_RPC_URL=<PEARLD_URL> \
4 -e PEARLD_RPC_USER=<RPC_USER> \
5 -e PEARLD_RPC_PASSWORD=<RPC_PASSWORD> \
6 -e VLLM_USE_DEEP_GEMM=0 \
7 -v ~/.cache/huggingface:/root/.cache/huggingface \
8 --shm-size 8g \
9 vllm_miner:latest \
10 pearl-ai/Qwen3-30B-A3B-Instruct-2507-pearl \
11 --host 0.0.0.0 --port 8000 \
12 --max-model-len 8192 \
13 --gpu-memory-utilization 0.9 \
14 --enforce-eager1pip install vllm
2
3vllm serve "pearl-ai/Qwen3-30B-A3B-Instruct-2507-pearl"1curl -X POST "http://localhost:8000/v1/chat/completions" \
2 -H "Content-Type: application/json" \
3 --data '{
4 "model": "pearl-ai/Qwen3-30B-A3B-Instruct-2507-pearl",
5 "messages": [
6 {
7 "role": "user",
8 "content": "What is the capital of France?"
9 }
10 ]
11 }'1from transformers import pipeline
2
3pipe = pipeline("text-generation", model="pearl-ai/Qwen3-30B-A3B-Instruct-2507-pearl")
4messages = [
5 {"role": "user", "content": "Who are you?"},
6]
7pipe(messages)1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3tokenizer = AutoTokenizer.from_pretrained("pearl-ai/Qwen3-30B-A3B-Instruct-2507-pearl")
4model = AutoModelForCausalLM.from_pretrained("pearl-ai/Qwen3-30B-A3B-Instruct-2507-pearl")
5
6messages = [
7 {"role": "user", "content": "Who are you?"},
8]
9inputs = tokenizer.apply_chat_template(
10 messages,
11 add_generation_prompt=True,
12 tokenize=True,
13 return_dict=True,
14 return_tensors="pt",
15).to(model.device)
16outputs = model.generate(**inputs, max_new_tokens=40)
17print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))