miniHui commited on
Commit
fae34ec
·
verified ·
1 Parent(s): c6c89c7

Add GGUF model card

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: miniHui/Geo-R1
3
+ pipeline_tag: image-text-to-text
4
+ library_name: gguf
5
+ license: mit
6
+ tags:
7
+ - gguf
8
+ - qwen2.5-vl
9
+ - multimodal
10
+ - quantized
11
+ ---
12
+
13
+ # Geo-R1 GGUF
14
+
15
+ GGUF conversion of [miniHui/Geo-R1](https://huggingface.co/miniHui/Geo-R1), a geospatial reasoning model based on Qwen2.5-VL-7B-Instruct.
16
+
17
+ ## Files
18
+
19
+ | File | Format | Size | SHA-256 |
20
+ | --- | --- | ---: | --- |
21
+ | `Geo-R1-Q4_K_M.gguf` | Q4_K_M language model (4.91 BPW) | 4,683,072,352 bytes | `666dc005f95b5cdbc2a8cb578621fac0ef71391b6b4f688d75422201ce5756ba` |
22
+ | `mmproj-Geo-R1-F16.gguf` | F16 vision projector | 1,354,163,200 bytes | `8dd5314810acfd740d0e75da8ceb19638d0861dd17107336c551711751ad7303` |
23
+
24
+ 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.
25
+
26
+ ## Usage
27
+
28
+ Use a recent [llama.cpp](https://github.com/ggml-org/llama.cpp) build:
29
+
30
+ ```bash
31
+ llama-cli \
32
+ -hf miniHui/Geo-R1-GGUF:Q4_K_M \
33
+ --image /path/to/image.jpg \
34
+ -p "Analyze this image and explain your reasoning."
35
+ ```
36
+
37
+ To use local files explicitly:
38
+
39
+ ```bash
40
+ llama-cli \
41
+ -m Geo-R1-Q4_K_M.gguf \
42
+ --mmproj mmproj-Geo-R1-F16.gguf \
43
+ --image /path/to/image.jpg \
44
+ -p "Analyze this image and explain your reasoning."
45
+ ```
46
+
47
+ ## Conversion
48
+
49
+ Converted and tested with llama.cpp revision `86a9c79f866799eb0e7e89c03578ccfbcc5d808e`.
50
+
51
+ The Q4_K_M model was validated with text generation, and the model/projector pair was validated with an image prompt using `llama-cli`.
52
+
53
+ See the [original model card](https://huggingface.co/miniHui/Geo-R1) for model details, intended use, and attribution.