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 "TareksGraveyard/Savant-Qwen2.5-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": "TareksGraveyard/Savant-Qwen2.5-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 "TareksGraveyard/Savant-Qwen2.5-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": "TareksGraveyard/Savant-Qwen2.5-72B",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

After some success with my merging my favorite Llama 3 models, I decided to try my hand on some Qwen 2.5 models I have tried and enjoyed. I never quite got fully onto the Qwen bandwagon as I always preferred LLaMa, but a lot of folks swear by Qwen. In my limited experience with Qwen I have enjoyed these models and merged something decent I think. For this merge I went for an default parameter Della method.

merge

This is a merge of pre-trained language models created using mergekit.

Merge Details

Merge Method

This model was merged using the della_linear merge method using zetasepic/Qwen2.5-72B-Instruct-abliterated as a base.

Models Merged

The following models were included in the merge:

Configuration

The following YAML configuration was used to produce this model:

models:
  - model: spow12/ChatWaifu_72B_v2.2
    parameters:
      weight: 0.25
  - model: EVA-UNIT-01/EVA-Qwen2.5-72B-v0.2
    parameters:
      weight: 0.25
  - model: Steelskull/Q2.5-MS-Mistoria-72b-v2
    parameters:
      weight: 0.25
  - model: Sao10K/72B-Qwen2.5-Kunou-v1
    parameters:
      weight: 0.25
merge_method: della_linear
base_model: zetasepic/Qwen2.5-72B-Instruct-abliterated
dtype: bfloat16
tokenizer_source: union
Downloads last month
10
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 TareksGraveyard/Savant-Qwen2.5-72B