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 "rombodawg/Rombos-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": "rombodawg/Rombos-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 "rombodawg/Rombos-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": "rombodawg/Rombos-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: (Coming soon)

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

EXL2:

Benchmarks: (Coming soon)

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
18
Safetensors
Model size
73B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with rombodawg/Rombos-LLM-V2.5-Qwen-72b.

Model tree for rombodawg/Rombos-LLM-V2.5-Qwen-72b

Base model

Qwen/Qwen2.5-72B
Finetuned
(63)
this model
Merges
6 models
Quantizations
3 models

Spaces using rombodawg/Rombos-LLM-V2.5-Qwen-72b 2

Collection including rombodawg/Rombos-LLM-V2.5-Qwen-72b

Evaluation results