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 "PARTAGES-dev/Qwen3-4B-PDAPT-SLERP" \
    --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": "PARTAGES-dev/Qwen3-4B-PDAPT-SLERP",
		"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 "PARTAGES-dev/Qwen3-4B-PDAPT-SLERP" \
        --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": "PARTAGES-dev/Qwen3-4B-PDAPT-SLERP",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Qwen3-4B-PDAPT-SLERP

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

Merge Details

Merge Method

This model was merged using the SLERP merge method.

Models Merged

The following models were included in the merge:

  • Qwen/Qwen3-4B-Base
  • Qwen3-4B-Base-PARTAGES-v2-1440

Configuration

The following YAML configuration was used to produce this model:

slices:
  - sources:
    - model: Qwen/Qwen3-4B-Base
      layer_range: [0, 36]
    - model: [ANON]
      layer_range: [0, 36]
merge_method: slerp
base_model: Qwen/Qwen3-4B-Base
parameters:
  t:
    - value: 0.5
dtype: bfloat16
Downloads last month
1
Safetensors
Model size
4B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with PARTAGES-dev/Qwen3-4B-PDAPT-SLERP.

Collection including PARTAGES-dev/Qwen3-4B-PDAPT-SLERP