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 "luca0621/appgen-qwen3-sft-rc-f-recovery100-completion420-lr5e7-1ep-v1" \
    --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": "luca0621/appgen-qwen3-sft-rc-f-recovery100-completion420-lr5e7-1ep-v1",
		"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 "luca0621/appgen-qwen3-sft-rc-f-recovery100-completion420-lr5e7-1ep-v1" \
        --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": "luca0621/appgen-qwen3-sft-rc-f-recovery100-completion420-lr5e7-1ep-v1",
		"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

luca0621/appgen-qwen3-sft-rc-f-recovery100-completion420-lr5e7-1ep-v1

Validated AppGen NGC-F v1 SFT checkpoint.

  • Family: qwen3
  • Base revision: 0c351dd01ed87e9c1b53cbc748cba10e6187ff3b
  • Dataset SHA256: 35cd47b744472183b211a9d445e54b19929f46e5d85b7ebabbf6559a93c3825a
  • Rows/exposures: 3288
  • Unique semantic rows: 2868
  • Optimizer updates: 103
  • Recipe: full LLM SFT, frozen ViT/aligner, LR 5e-7, one epoch
Downloads last month
21
Safetensors
Model size
9B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support