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

The model is trained with curiosity-driven RL described in paper.

We have released vllm based inference code at https://github.com/TIGER-AI-Lab/Pixel-Reasoner/. Project page: https://tiger-ai-lab.github.io/Pixel-Reasoner/ Github repository: https://github.com/TIGER-AI-Lab/Pixel-Reasoner/

We will release a simple hf.generate() based inference code.

Please also play with the cool interactive demo

Downloads last month
162
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 1 Ask for provider support

Model tree for TIGER-Lab/PixelReasoner-RL-v1

Finetuned
(1088)
this model
Quantizations
1 model

Dataset used to train TIGER-Lab/PixelReasoner-RL-v1

Space using TIGER-Lab/PixelReasoner-RL-v1 1

Collection including TIGER-Lab/PixelReasoner-RL-v1

Paper for TIGER-Lab/PixelReasoner-RL-v1