louis030195 commited on
Commit
2e7eeef
·
verified ·
1 Parent(s): 2499ecc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # pipe-agent-v6 (GGUF)
2
+
3
+ Screenpipe pipe agent v6 — fine-tuned Qwen3.5-9B with **vision enabled**.
4
+
5
+ ## What's new in v6
6
+ - **Multimodal**: can process screenshots/images alongside text (model_type: qwen3_5, not qwen3_5_text)
7
+ - Same tool-calling performance as v5 for text tasks
8
+ - Vision tower preserved from pretrained Qwen3.5-9B (frozen during LoRA training)
9
+ - Eval loss: 0.3210
10
+
11
+ ## Files
12
+ - `pipe-agent-v6-q4km.gguf` — text model (Q4_K_M)
13
+ - `pipe-agent-v6-mmproj-f16.gguf` — vision projector (F16)
14
+ - `Modelfile` — ollama config
15
+
16
+ ## Usage with Ollama
17
+ ```bash
18
+ ollama create pipe-agent:v6 -f Modelfile
19
+ ollama run pipe-agent:v6
20
+ ```