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 "SEACrowd/SEA-LION-VL-IT-Merge-100226" \
    --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": "SEACrowd/SEA-LION-VL-IT-Merge-100226",
		"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 "SEACrowd/SEA-LION-VL-IT-Merge-100226" \
        --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": "SEACrowd/SEA-LION-VL-IT-Merge-100226",
		"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

Untitled Model (1)

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

Merge Details

Merge Method

This model was merged using the Linear merge method.

Models Merged

The following models were included in the merge:

  • aisingapore/Gemma-SEA-LION-v4-27B-IT
  • /scratch/peeratli/axolotl/outputs-it-cpt4/sealion-v4-gemma-3-27b-CPT-V2_mammoth-vl-IT-hero-run-v1-Mammoth-all-shards-CulturalGroundOE/checkpoint-22586

Configuration

The following YAML configuration was used to produce this model:

models:
  - model: /scratch/peeratli/axolotl/outputs-it-cpt4/sealion-v4-gemma-3-27b-CPT-V2_mammoth-vl-IT-hero-run-v1-Mammoth-all-shards-CulturalGroundOE/checkpoint-22586
    parameters:
      weight: 0.1
  - model: aisingapore/Gemma-SEA-LION-v4-27B-IT
    parameters:
      weight: 0.9
merge_method: linear
dtype: bfloat16
Downloads last month
7
Safetensors
Model size
29B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for SEACrowd/SEA-LION-VL-IT-Merge-100226

Finetuned
(6)
this model
Quantizations
2 models

Collection including SEACrowd/SEA-LION-VL-IT-Merge-100226

Paper for SEACrowd/SEA-LION-VL-IT-Merge-100226