Instructions to use GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("visual-question-answering", model="GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf", dtype="auto") - llama-cpp-python
How to use GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf", filename="INFRL-Qwen2.5-VL-72B-Preview-bf16-00001-of-00003.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16 # Run inference directly in the terminal: llama-cli -hf GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16 # Run inference directly in the terminal: llama-cli -hf GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16 # Run inference directly in the terminal: ./llama-cli -hf GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16
Use Docker
docker model run hf.co/GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16
- LM Studio
- Jan
- Ollama
How to use GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf with Ollama:
ollama run hf.co/GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16
- Unsloth Studio
How to use GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf to start chatting
- Pi
How to use GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf with Docker Model Runner:
docker model run hf.co/GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16
- Lemonade
How to use GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf:BF16
Run and chat with the model
lemonade run user.INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf-BF16
List all available models
lemonade list
INFRL-Qwen2.5-VL-72B-Preview
Model Overview
INFRL-Qwen2.5-VL-72B-Preview improves visual reasoning upon Qwen2.5-VL-72B-Instruct model.
As of March 25th, 2025, INFRL-Qwen2.5-VL-72B-Preview is the best-performing open-sourced VL model on various visual reasoning benchmarks (MathVision,MathVista, MathVerse).
Evaluation
| Models | MathVision (test) | MathVista (testmini) | MathVerse (testmini) |
|---|---|---|---|
| GPT4o | 30.6 | 60 | 41.2 |
| Gemini-2.0-Flash | 41.3 | 70.1 | 50.6 |
| Claude 3.5 Sonnet | 33.5 | 67.7 | 47.8 |
| QvQ-72B | 35.9 | 71.4 | 48.6 |
| InternVL2.5-78B | 34.9 | 72.3 | 51.7 |
| Qwen-VL-2.5-72B | 38.1 | 74.8 | 57.18 |
| INFRL-VL-Preview | 41.9 | 77.8 | 58.84 |
We will release a code repository for VLM evaluation. It supports RL training with simple rule-based rewards, meanwhile aligning with LLM-Judge results.
Stay tuned!
Contributors
Supervisors
Wei Chu • Yuan Qi
VL Team
Haozhe Wang • Zuming Huang
RL Team
Haozhe Wang • Chao Qu • Long Li
Thanks
Thanks to Jiaran Hao, Liuyihan Song for supports in the RL infrastructure.
Citation
If you find our model useful, please consider citing:
@misc {INFRL_VL_Preview,
author = { {Wang, Haozhe and Huang, Zuming and Qu, Chao and Chu, Wei and Qi, Yuan} },
title = { INFRL-Qwen2.5-VL-72B-Preview },
year = 2025,
url = { https://huggingface.co/infly/INFRL-Qwen2.5-VL-72B-Preview},
publisher = { Hugging Face }
}
- Downloads last month
- 17
16-bit
Model tree for GeorgyGUF/INFRL-Qwen2.5-VL-72B-Preview-bf16.gguf
Base model
Qwen/Qwen2.5-VL-72B-Instruct