Instructions to use miniHui/Geo-R1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use miniHui/Geo-R1-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf miniHui/Geo-R1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf miniHui/Geo-R1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf miniHui/Geo-R1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf miniHui/Geo-R1-GGUF:Q4_K_M
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 miniHui/Geo-R1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf miniHui/Geo-R1-GGUF:Q4_K_M
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 miniHui/Geo-R1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf miniHui/Geo-R1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/miniHui/Geo-R1-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use miniHui/Geo-R1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "miniHui/Geo-R1-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "miniHui/Geo-R1-GGUF", "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/miniHui/Geo-R1-GGUF:Q4_K_M
- Ollama
How to use miniHui/Geo-R1-GGUF with Ollama:
ollama run hf.co/miniHui/Geo-R1-GGUF:Q4_K_M
- Unsloth Studio
How to use miniHui/Geo-R1-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 miniHui/Geo-R1-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 miniHui/Geo-R1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for miniHui/Geo-R1-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use miniHui/Geo-R1-GGUF with Docker Model Runner:
docker model run hf.co/miniHui/Geo-R1-GGUF:Q4_K_M
- Lemonade
How to use miniHui/Geo-R1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull miniHui/Geo-R1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Geo-R1-GGUF-Q4_K_M
List all available models
lemonade list
| base_model: miniHui/Geo-R1 | |
| pipeline_tag: image-text-to-text | |
| library_name: gguf | |
| license: mit | |
| tags: | |
| - gguf | |
| - qwen2.5-vl | |
| - multimodal | |
| - quantized | |
| # Geo-R1 GGUF | |
| **This repo is proudly made by TerraByte AI.** | |
| GGUF conversion of [miniHui/Geo-R1](https://huggingface.co/miniHui/Geo-R1), a geospatial reasoning model based on Qwen2.5-VL-7B-Instruct. | |
| ## Files | |
| | File | Format | Size | SHA-256 | | |
| | --- | --- | ---: | --- | | |
| | `Geo-R1-Q4_K_M.gguf` | Q4_K_M language model (4.91 BPW) | 4,683,072,352 bytes | `666dc005f95b5cdbc2a8cb578621fac0ef71391b6b4f688d75422201ce5756ba` | | |
| | `mmproj-Geo-R1-F16.gguf` | F16 vision projector | 1,354,163,200 bytes | `8dd5314810acfd740d0e75da8ceb19638d0861dd17107336c551711751ad7303` | | |
| The language model is quantized to 4-bit `Q4_K_M`. The vision projector is kept at F16 to preserve image understanding quality and is required for image or video inputs. | |
| ## Usage | |
| Use a recent [llama.cpp](https://github.com/ggml-org/llama.cpp) build: | |
| ```bash | |
| llama-cli \ | |
| -hf miniHui/Geo-R1-GGUF:Q4_K_M \ | |
| --image /path/to/image.jpg \ | |
| -p "Analyze this image and explain your reasoning." | |
| ``` | |
| To use local files explicitly: | |
| ```bash | |
| llama-cli \ | |
| -m Geo-R1-Q4_K_M.gguf \ | |
| --mmproj mmproj-Geo-R1-F16.gguf \ | |
| --image /path/to/image.jpg \ | |
| -p "Analyze this image and explain your reasoning." | |
| ``` | |
| ## Conversion | |
| Converted and tested with llama.cpp revision `86a9c79f866799eb0e7e89c03578ccfbcc5d808e`. | |
| The Q4_K_M model was validated with text generation, and the model/projector pair was validated with an image prompt using `llama-cli`. | |
| See the [original model card](https://huggingface.co/miniHui/Geo-R1) for model details, intended use, and attribution. |