How to use from
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 "MoNE-Pruning/Qwen2-57B-A14B-Instruct-MoNE-48-math-100" \
    --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": "MoNE-Pruning/Qwen2-57B-A14B-Instruct-MoNE-48-math-100",
		"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 "MoNE-Pruning/Qwen2-57B-A14B-Instruct-MoNE-48-math-100" \
        --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": "MoNE-Pruning/Qwen2-57B-A14B-Instruct-MoNE-48-math-100",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Qwen2-57B-A14B-Instruct-MoNE-48-math-100

This repository contains a structured pruned variant of Qwen2-57B-A14B-Instruct using the MoNE (Mixture-of-Novice Experts) framework proposed in our paper.

Model Overview

  • Base Model: Qwen2-57B-A14B-Instruct
  • Method: MoNE structured expert pruning
  • Remaining Experts: 48
  • Calibration Set: hendrycks_math-100
  • Architecture: Mixture-of-Experts (MoE)
  • Framework: Transformers-compatible
    This checkpoint replaces redundant experts with lightweight novice experts via structured pruning, aiming to reduce compute while preserving performance.

Paper

Title: MoNE: Replacing Redundant Experts with Lightweight Novices for Structured Pruning of MoE
Authors: Geng Zhang, Yuxuan Han, Yuxuan Lou, Yiqi Zhang, Wangbo Zhao, Yang You
arXiv: arXiv:2507.00390

Downloads last month
23
Safetensors
Model size
45B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for MoNE-Pruning/Qwen2-57B-A14B-Instruct-MoNE-48-math-100

Finetuned
(2)
this model

Paper for MoNE-Pruning/Qwen2-57B-A14B-Instruct-MoNE-48-math-100