3morixd commited on
Commit
8597379
·
verified ·
1 Parent(s): 1f32acc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +72 -9
README.md CHANGED
@@ -1,17 +1,80 @@
1
  ---
2
  license: apache-2.0
3
- tags: [dispatch-ai, mobile, quantized, gguf, phone-farm-tested, on-device, edge-ai]
 
 
 
 
 
 
 
 
4
  pipeline_tag: text-generation
5
- language: [en]
6
  ---
7
 
8
- # MiniCPM5 1B — Mobile Optimized
9
 
10
- **Dispatch AI** — Compact model from ModelBest, tuned for mobile.
11
 
12
- | Metric | Value |
13
- |--------|-------|
14
- | Generation | 17.5 t/s |
15
- | Size | ~750 MB |
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
+ # MiniCPM5-1B-mobile
16
 
17
+ ⚠️ **PARTIAL** — Verified June 2026.
18
 
19
+ ## Verification Results
 
 
 
20
 
21
+ | Prompt | Response | Correct? |
22
+ |--------|----------|----------|
23
+ | What is the capital of France? | "" | ⚠️ |
24
+ | What is 2+2? Just the number. | "```t
25
+ ```
26
+
27
+ ####
28
+
29
+ ####
30
+
31
+ ####
32
+
33
+ ####
34
+
35
+ ####
36
+
37
+ ####
38
+
39
+ ####
40
+
41
+ ####
42
+
43
+ ##" | ⚠️ |
44
+
45
+ **Chat format**: `chatml`
46
+
47
+ ## Model Details
48
+
49
+ | Attribute | Value |
50
+ |-----------|-------|
51
+ | **Base Model** | openbmb/MiniCPM3-4B |
52
+ | **File Size** | 656 MB |
53
+ | **Format** | GGUF |
54
+ | **Chat Format** | chatml |
55
+ | **CPU Speed** | 18.0 tokens/sec |
56
+ | **License** | apache-2.0 |
57
+
58
+ ## Usage
59
+
60
+ ```python
61
+ from llama_cpp import Llama
62
+
63
+ llm = Llama(model_path="model.gguf", chat_format="chatml", n_ctx=512, n_threads=4)
64
+ response = llm.create_chat_completion(
65
+ messages=[{"role": "user", "content": "What is the capital of France?"}],
66
+ max_tokens=50,
67
+ )
68
+ print(response["choices"][0]["message"]["content"])
69
+ ```
70
+
71
+ ### dispatchAI SDK
72
+ ```python
73
+ from dispatchai import load_model
74
+ model = load_model("MiniCPM5-1B-mobile", backend="gguf")
75
+ print(model.chat("Hello!"))
76
+ ```
77
+
78
+ ## About dispatchAI
79
+
80
+ [dispatchAI](https://huggingface.co/dispatchAI) — Small. Mobile. Free. UAE-built.