3morixd commited on
Commit
3bdb847
·
verified ·
1 Parent(s): d7ac8f1

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +56 -10
README.md CHANGED
@@ -1,17 +1,63 @@
1
  ---
2
  license: apache-2.0
3
- tags: [dispatch-ai, mobile, vision, quantized, gguf, phone-farm-tested, on-device, edge-ai, multimodal]
4
- pipeline_tag: image-text-to-text
5
- language: [en]
 
 
 
 
 
 
 
6
  ---
7
 
8
- # MiniCPM-V 4.6 — Mobile Multimodal
9
 
10
- **Dispatch AI** — See + understand on-device. The most capable mobile vision model we've tested.
11
 
12
- | Metric | Value |
13
- |--------|-------|
14
- | Generation | 11.2 t/s |
15
- | Size | ~2.8 GB |
16
 
17
- **Dispatch AI (FZE)** Sharjah, UAE | License 10818
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ language:
4
+ - en
5
+ library_name: transformers
6
+ tags:
7
+ - mobile
8
+ - on-device
9
+ - quantized
10
+ - gguf
11
+ - dispatchai
12
+ pipeline_tag: text-generation
13
  ---
14
 
15
+ # MiniCPM-V-4.6-mobile
16
 
17
+ ⚠️ **PARTIAL** — Verified June 2026.
18
 
19
+ ## Verification Results
 
 
 
20
 
21
+ | Prompt | Response | Correct? |
22
+ |--------|----------|----------|
23
+ | What is the capital of France? | "<think>
24
+ Okay, the user is asking for the capital of France. " | ✅ |
25
+ | What is 2+2? Just the number. | "<think>
26
+ We are asked: "What is 2+2? Just the number." So we " | ⚠️ |
27
+
28
+ **Chat format**: `chatml`
29
+
30
+ ## Model Details
31
+
32
+ | Attribute | Value |
33
+ |-----------|-------|
34
+ | **Base Model** | openbmb/MiniCPM-V-4 |
35
+ | **File Size** | 505 MB |
36
+ | **Format** | GGUF |
37
+ | **Chat Format** | chatml |
38
+ | **CPU Speed** | 26.5 tokens/sec |
39
+ | **License** | apache-2.0 |
40
+
41
+ ## Usage
42
+
43
+ ```python
44
+ from llama_cpp import Llama
45
+
46
+ llm = Llama(model_path="model.gguf", chat_format="chatml", n_ctx=512, n_threads=4)
47
+ response = llm.create_chat_completion(
48
+ messages=[{"role": "user", "content": "What is the capital of France?"}],
49
+ max_tokens=50,
50
+ )
51
+ print(response["choices"][0]["message"]["content"])
52
+ ```
53
+
54
+ ### dispatchAI SDK
55
+ ```python
56
+ from dispatchai import load_model
57
+ model = load_model("MiniCPM-V-4.6-mobile", backend="gguf")
58
+ print(model.chat("Hello!"))
59
+ ```
60
+
61
+ ## About dispatchAI
62
+
63
+ [dispatchAI](https://huggingface.co/dispatchAI) — Small. Mobile. Free. UAE-built.