Instructions to use Paranioar/NEO1_5-9B-SFT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Paranioar/NEO1_5-9B-SFT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Paranioar/NEO1_5-9B-SFT", trust_remote_code=True) messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Paranioar/NEO1_5-9B-SFT", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Paranioar/NEO1_5-9B-SFT with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Paranioar/NEO1_5-9B-SFT" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Paranioar/NEO1_5-9B-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
docker model run hf.co/Paranioar/NEO1_5-9B-SFT
- SGLang
How to use Paranioar/NEO1_5-9B-SFT with 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 "Paranioar/NEO1_5-9B-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": "Paranioar/NEO1_5-9B-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 "Paranioar/NEO1_5-9B-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": "Paranioar/NEO1_5-9B-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" } } ] } ] }' - Docker Model Runner
How to use Paranioar/NEO1_5-9B-SFT with Docker Model Runner:
docker model run hf.co/Paranioar/NEO1_5-9B-SFT
ππ Motivation
Can native VLMs generalize across single-image, multi-image, Video, and 3D spatial scenarios?
What advantages of native VLMs, especially early-fusion for pixel-pixelοΌpixel-word?
How to build strong native VLMs over Qwen3-VL for subsequent RL community?
π§βπ¨π§βπ¨ Model Overview
NEO1_5-9B has the following features:
Model Type: Native Vision-Language Models
Model Mode: Mixed Native-Attn & Native-RoPE
Layer Parameters: 214M vs. 193M (Qwen3-8B)
Model Parameters: 9B (Non-Embedding)
Number of Layers: 42 (6 for Pre-Buffer & 36 for Post-LLM)
Number of Heads: 32 for Q and 8 for KV (GQA)
Head Dimensions: 128 * 2 for QK and 128 for V
π₯π₯ Model Performance
βοΈβοΈ Citation
If NEO-ov is helpful for your research, please consider star β and citation π :
@article{Diao2026NEOov,
title = {From Pixels to Words--Towards Native One-Vision Models at Scale},
author = {Diao, Haiwen and Wang, Jiahao and Wu, Penghao and Dong, Yuhao and Niu, Yuwei and Zhu, Yue and Cai, Zhongang and Fan, Weichen and Dai, Linjun and Wu, Silei and others},
journal = {arXiv preprint arXiv:2605.28820},
year = {2026}
}
- Downloads last month
- -