3morixd commited on
Commit
6e38aa2
·
verified ·
1 Parent(s): 6dbabba

Upload README.md with huggingface_hub

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