How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "HumanBehaviorAtlas/OmniSapiens2.0"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "HumanBehaviorAtlas/OmniSapiens2.0",
		"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/HumanBehaviorAtlas/OmniSapiens2.0
Quick Links

Omnisapiens 2.0

Omnisapiens 2.0 is a model developed with reference to the following paper:

📄 Omnisapiens: A foundation model for social behavior processing via heterogeneity-aware relative policy optimization: arXiv:2602.10635

Citation

If you use this model, please cite the associated paper:

@article{ong2026omnisapiens,
  title={Omnisapiens: A foundation model for social behavior processing via heterogeneity-aware relative policy optimization},
  author={Ong, Keane and Boughorbel, Sabri and Xiao, Luwei and Ekbote, Chanakya and Dai, Wei and Qu, Ao and Wu, Jingyao and Mao, Rui and Hoque, Ehsan and Cambria, Erik and others},
  journal={arXiv preprint arXiv:2602.10635},
  year={2026}
}
Downloads last month
113
Safetensors
Model size
9B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Paper for HumanBehaviorAtlas/OmniSapiens2.0