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 "wchai/SenseNova-U1-8B-SI800K-SFT" \
    --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": "wchai/SenseNova-U1-8B-SI800K-SFT",
		"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 "wchai/SenseNova-U1-8B-SI800K-SFT" \
        --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": "wchai/SenseNova-U1-8B-SI800K-SFT",
		"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

SenseNova-U1-8B-SI800K-SFT

sensenova/SenseNova-U1-8B-MoT-SFT further supervised-fine-tuned on SenseNova-SI-800K for spatial understanding.

This is an understanding-focused SFT: only the language/understanding branch is optimized on the spatial corpus. The image-generation branch of the unified NEO-unify architecture is inherited unchanged from the base model (not further trained here).

Details

Base sensenova/SenseNova-U1-8B-MoT-SFT (NEO-unify, NEOChatModel)
Data SenseNova-SI-800K โ€” 832K image+text spatial-intelligence samples (depth / distance / size / relative position / multi-view spatial relations)
Objective understanding-only SFT (generation branch untouched)
Steps โ‰ˆ183K (8ร—H100; lr 2e-4 constant; seq len 20480)
Precision bfloat16

Built with the SenseNova-U1 training stack; recipe summarized above.

Usage

The model uses custom code (NEOChatModel); load with trust_remote_code=True. See the base model card for inference instructions โ€” they apply unchanged.

License

Apache-2.0, inherited from the base model.

Downloads last month
18
Safetensors
Model size
18B params
Tensor type
BF16
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for wchai/SenseNova-U1-8B-SI800K-SFT

Finetuned
(1)
this model