CapPow commited on
Commit
5488f7a
·
verified ·
1 Parent(s): 0621363

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -16
README.md CHANGED
@@ -29,29 +29,27 @@ Given a specimen image and its taxon name, the model returns schema-valid JSON w
29
  - **Format:** GGUF (llama.cpp-native), runs offline on an 8 GB-class GPU
30
  - **Code, validation, and documentation:** [GitHub repository](https://github.com/CapPow/herb-visor)
31
 
32
- ## Files
33
 
34
- | File | Purpose |
35
- |---|---|
36
- | `herb-visor-4b-q8.gguf` | model weights, q8 (recommended; runs in ~8 GB VRAM) |
37
- | `herb-visor-4b-f16.gguf` | model weights, f16 |
38
- | `herb-visor-4b-mmproj-f16.gguf` | vision projector (required for image input) |
39
 
40
- The mmproj file is required. Pair it with either weight file.
41
-
42
- ## Recommended download
43
 
44
- - Weights (Q8 recommended): [`herb-visor-4b-q8.gguf`](https://huggingface.co/CapPow/herb-visor/resolve/main/herb-visor-4b-q8.gguf?download=true)
45
- - Vision projector (required): [`herb-visor-4b-mmproj-f16.gguf`](https://huggingface.co/CapPow/herb-visor/resolve/main/herb-visor-4b-mmproj-f16.gguf?download=true)
46
- - F16: [`herb-visor-4b-f16.gguf`](https://huggingface.co/CapPow/herb-visor/resolve/main/herb-visor-4b-f16.gguf?download=true)
47
 
48
- One-line pull via llama.cpp (resolves to Q8):
49
 
50
- llama-server -hf CapPow/herb-visor:Q8 --mmproj herb-visor-4b-mmproj-f16.gguf
51
 
52
- ## Usage
 
 
 
 
53
 
54
- Start a server with llama.cpp:
55
 
56
  ```bash
57
  llama-server \
 
29
  - **Format:** GGUF (llama.cpp-native), runs offline on an 8 GB-class GPU
30
  - **Code, validation, and documentation:** [GitHub repository](https://github.com/CapPow/herb-visor)
31
 
32
+ ## Quickstart (recommended)
33
 
34
+ One command downloads Q8 to llama.cpp's cache and auto-fetches the projector:
 
 
 
 
35
 
36
+ ```bash
37
+ llama-server -hf CapPow/herb-visor:Q8 --temp 0 -c 8192
38
+ ```
39
 
40
+ Serves an OpenAI-compatible endpoint at `127.0.0.1:8080`.
 
 
41
 
42
+ ## Manual download (alternative)
43
 
44
+ Only needed for offline/air-gapped use or to pin a specific file. The pull above already handles downloads, so don't do both. Download the projector (required) plus one weight file:
45
 
46
+ | File | Purpose |
47
+ |---|---|
48
+ | [`herb-visor-4b-mmproj-f16.gguf`](https://huggingface.co/CapPow/herb-visor/resolve/main/herb-visor-4b-mmproj-f16.gguf?download=true) | vision projector — **required** for image input |
49
+ | [`herb-visor-4b-q8.gguf`](https://huggingface.co/CapPow/herb-visor/resolve/main/herb-visor-4b-q8.gguf?download=true) | model weights, q8 (**recommended**; ~8 GB VRAM) |
50
+ | [`herb-visor-4b-f16.gguf`](https://huggingface.co/CapPow/herb-visor/resolve/main/herb-visor-4b-f16.gguf?download=true) | model weights, f16 |
51
 
52
+ Pair the mmproj with either weight file, then run against the local files:
53
 
54
  ```bash
55
  llama-server \