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 "Rombo-Org/Rombo-LLM-V2.5-Qwen-72b" \
    --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": "Rombo-Org/Rombo-LLM-V2.5-Qwen-72b",
		"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 "Rombo-Org/Rombo-LLM-V2.5-Qwen-72b" \
        --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": "Rombo-Org/Rombo-LLM-V2.5-Qwen-72b",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Rombos-LLM-V2.5-Qwen-72b

image/jpeg

Rombos-LLM-V2.5-Qwen-72b is a continues finetuned version of Qwen2.5-72B. I noticed recently that the Qwen team did not learn from my methods of continuous finetuning, the great benefits, and no downsides of it. So I took it upon myself to merge the instruct model with the base model myself using the Ties merge method

This version of the model shows higher performance than the original instruct and base models.

Quants:

GGUF: https://huggingface.co/bartowski/Replete-LLM-V2.5-Qwen-72b-GGUF

Open LLM Leaderboard Evaluation Results

Detailed results can be found here

Metric Value
Avg. 45.39
IFEval (0-Shot) 71.55
BBH (3-Shot) 61.27
MATH Lvl 5 (4-Shot) 47.58
GPQA (0-shot) 19.80
MuSR (0-shot) 17.32
MMLU-PRO (5-shot) 54.83
Downloads last month
15
Safetensors
Model size
73B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Rombo-Org/Rombo-LLM-V2.5-Qwen-72b

Base model

Qwen/Qwen2.5-72B
Finetuned
(66)
this model
Finetunes
1 model
Quantizations
2 models

Collection including Rombo-Org/Rombo-LLM-V2.5-Qwen-72b

Evaluation results