LordNeel commited on
Commit
7c8b437
·
verified ·
1 Parent(s): f7aab52

Document verified mmproj image smoke test

Browse files
README.md CHANGED
@@ -231,9 +231,11 @@ mmproj can be passed with `--mmproj mmproj-agents-a1-bf16.gguf`.
231
 
232
  Local smoke test:
233
 
234
- | Text GGUF | Image | Result |
235
- |---|---|---|
236
- | `agents-a1-Q4_K_M.gguf` | llama.cpp `tools/mtmd/test-1.jpeg` | Loaded mmproj, encoded image, answered `MEN WALK ON MOON`. |
 
 
237
 
238
  ## MTP Status
239
 
 
231
 
232
  Local smoke test:
233
 
234
+ | Text GGUF | Image | Prompt | Expected | Answer | Verified |
235
+ |---|---|---|---|---|---:|
236
+ | `agents-a1-Q4_K_M.gguf` | llama.cpp `tools/mtmd/test-1.jpeg` | `Look at the newspaper image. What is the main headline? Answer only with the headline text.` | `MEN WALK ON MOON` | `MEN WALK ON MOON` | true |
237
+
238
+ Verification report: `reports/mmproj-q4km-actual-image-verify.json`.
239
 
240
  ## MTP Status
241
 
reports/mmproj-agents-a1-bf16.json CHANGED
@@ -42,8 +42,13 @@
42
  "smoke_test": {
43
  "text_gguf": "agents-a1-Q4_K_M.gguf",
44
  "image": "llama.cpp tools/mtmd/test-1.jpeg",
 
 
 
 
45
  "runtime": "llama-mtmd-cli",
46
  "result": "loaded mmproj, encoded image, answered MEN WALK ON MOON",
47
- "log": "/home/ripper/agents-a1-quant-lab/runs/mmproj-q4km-smoke-chatml.log"
 
48
  }
49
  }
 
42
  "smoke_test": {
43
  "text_gguf": "agents-a1-Q4_K_M.gguf",
44
  "image": "llama.cpp tools/mtmd/test-1.jpeg",
45
+ "prompt": "Look at the newspaper image. What is the main headline? Answer only with the headline text.",
46
+ "expected": "MEN WALK ON MOON",
47
+ "answer": "MEN WALK ON MOON",
48
+ "verified": true,
49
  "runtime": "llama-mtmd-cli",
50
  "result": "loaded mmproj, encoded image, answered MEN WALK ON MOON",
51
+ "report": "reports/mmproj-q4km-actual-image-verify.json",
52
+ "log": "/home/ripper/agents-a1-quant-lab/runs/mmproj-q4km-actual-image-verify.log"
53
  }
54
  }
reports/mmproj-q4km-actual-image-verify.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image": "/home/ripper/agents-a1-quant-lab/vendor/llama.cpp/tools/mtmd/test-1.jpeg",
3
+ "model": "agents-a1-Q4_K_M.gguf",
4
+ "mmproj": "mmproj-agents-a1-bf16.gguf",
5
+ "prompt": "Look at the newspaper image. What is the main headline? Answer only with the headline text.",
6
+ "expected_headline": "MEN WALK ON MOON",
7
+ "answer": "MEN WALK ON MOON",
8
+ "verified": true,
9
+ "log": "/home/ripper/agents-a1-quant-lab/runs/mmproj-q4km-actual-image-verify.log"
10
+ }