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 "ChesterProgrammer/Qwen3.5-9B-ConsistentChat-100steps" \
    --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": "ChesterProgrammer/Qwen3.5-9B-ConsistentChat-100steps",
		"messages": [
			{
				"role": "user",
				"content": [
					{
						"type": "text",
						"text": "Describe this image in one sentence."
					},
					{
						"type": "image_url",
						"image_url": {
							"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
						}
					}
				]
			}
		]
	}'
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 "ChesterProgrammer/Qwen3.5-9B-ConsistentChat-100steps" \
        --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": "ChesterProgrammer/Qwen3.5-9B-ConsistentChat-100steps",
		"messages": [
			{
				"role": "user",
				"content": [
					{
						"type": "text",
						"text": "Describe this image in one sentence."
					},
					{
						"type": "image_url",
						"image_url": {
							"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
						}
					}
				]
			}
		]
	}'
Quick Links

Uploaded finetuned model

  • Developed by: ChesterProgrammer
  • License: apache-2.0
  • Finetuned from model : unsloth/Qwen3.5-9B

This qwen3_5 model was trained 2x faster with Unsloth and Huggingface's TRL library.

Hyperparams

Method Lora(16 bit) Epochs 0 Batch size 8 Grad Accum 2 Learning rate 0.0002 Optimizer AdamW 8-bit Max steps 100 Context length 2048 Warmup steps 4 Packing False weight decay 0.001 seed 3407

LoRA Rank 16 Alpha 32 Dropout 0 Variant lora

Dataset jiawei-ucas/ConsistentChat

Elapsed: 22m 51s 0.07 steps/s Tokens: 1572400

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

Model tree for ChesterProgrammer/Qwen3.5-9B-ConsistentChat-100steps

Finetuned
Qwen/Qwen3.5-9B
Finetuned
(155)
this model