apepkuss79 commited on
Commit
e08b8d1
·
verified ·
1 Parent(s): 5e8df03

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +83 -1
README.md CHANGED
@@ -1,3 +1,85 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ base_model: openbmb/MiniCPM-o-2_6
3
+ model_creator: openbmb
4
+ model_name: MiniCPM-o-2_6
5
+ quantized_by: Second State Inc.
6
+ pipeline_tag: any-to-any
7
+ library_name: transformers
8
+ language:
9
+ - multilingual
10
  ---
11
+
12
+ <!-- header start -->
13
+ <!-- 200823 -->
14
+ <div style="width: auto; margin-left: auto; margin-right: auto">
15
+ <img src="https://github.com/LlamaEdge/LlamaEdge/raw/dev/assets/logo.svg" style="width: 100%; min-width: 400px; display: block; margin: auto;">
16
+ </div>
17
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
18
+ <!-- header end -->
19
+
20
+ # MiniCPM-o-2_6-GGUF
21
+
22
+ ## Original Model
23
+
24
+ [openbmb/MiniCPM-o-2_6](https://huggingface.co/openbmb/MiniCPM-o-2_6)
25
+
26
+ ## Run with LlamaEdge
27
+
28
+ - LlamaEdge version: coming soon
29
+
30
+ <!-- - LlamaEdge version: [v0.14.17](https://github.com/LlamaEdge/LlamaEdge/releases/tag/0.14.17) and above
31
+
32
+ - Prompt template
33
+
34
+ - Prompt type: `minicpmv`
35
+
36
+ - Prompt string
37
+
38
+ ```text
39
+ <|system|>
40
+ {system_message}<|end|>
41
+ <|user|>
42
+ {user_message_1}<|end|>
43
+ <|assistant|>
44
+ {assistant_message_1}<|end|>
45
+ <|user|>
46
+ {user_message_2}<|end|>
47
+ <|assistant|>
48
+ ```
49
+
50
+ The `{user_message_n}` has the format: `{image_base64_encoding_string}\n{user_question}`.
51
+
52
+ - Context size: `128000`
53
+
54
+ - Run as LlamaEdge service
55
+
56
+ ```bash
57
+ wasmedge --dir .:. \
58
+ --nn-preload default:GGML:AUTO:MiniCPM-o-2_6-Q5_K_M.gguf \
59
+ llama-api-server.wasm \
60
+ --prompt-template minicpmv \
61
+ --ctx-size 128000 \
62
+ --llava-mmproj mmproj-model-f16.gguf \
63
+ --model-name minicpmv-26
64
+ ``` -->
65
+
66
+ ## Quantized GGUF Models
67
+
68
+ | Name | Quant method | Bits | Size | Use case |
69
+ | ---- | ---- | ---- | ---- | ----- |
70
+ | [MiniCPM-o-2_6-Q2_K.gguf](https://huggingface.co/second-state/MiniCPM-o-2_6-GGUF/blob/main/MiniCPM-o-2_6-Q2_K.gguf) | Q2_K | 2 | 3.01 GB| smallest, significant quality loss - not recommended for most purposes |
71
+ | [MiniCPM-o-2_6-Q3_K_L.gguf](https://huggingface.co/second-state/MiniCPM-o-2_6-GGUF/blob/main/MiniCPM-o-2_6-Q3_K_L.gguf) | Q3_K_L | 3 | 4.09 GB| small, substantial quality loss |
72
+ | [MiniCPM-o-2_6-Q3_K_M.gguf](https://huggingface.co/second-state/MiniCPM-o-2_6-GGUF/blob/main/MiniCPM-o-2_6-Q3_K_M.gguf) | Q3_K_M | 3 | 3.81 GB| very small, high quality loss |
73
+ | [MiniCPM-o-2_6-Q3_K_S.gguf](https://huggingface.co/second-state/MiniCPM-o-2_6-GGUF/blob/main/MiniCPM-o-2_6-Q3_K_S.gguf) | Q3_K_S | 3 | 3.49 GB| very small, high quality loss |
74
+ | [MiniCPM-o-2_6-Q4_0.gguf](https://huggingface.co/second-state/MiniCPM-o-2_6-GGUF/blob/main/MiniCPM-o-2_6-Q4_0.gguf) | Q4_0 | 4 | 4.43 GB| legacy; small, very high quality loss - prefer using Q3_K_M |
75
+ | [MiniCPM-o-2_6-Q4_K_M.gguf](https://huggingface.co/second-state/MiniCPM-o-2_6-GGUF/blob/main/MiniCPM-o-2_6-Q4_K_M.gguf) | Q4_K_M | 4 | 4.68 GB| medium, balanced quality - recommended |
76
+ | [MiniCPM-o-2_6-Q4_K_S.gguf](https://huggingface.co/second-state/MiniCPM-o-2_6-GGUF/blob/main/MiniCPM-o-2_6-Q4_K_S.gguf) | Q4_K_S | 4 | 4.46 GB| small, greater quality loss |
77
+ | [MiniCPM-o-2_6-Q5_0.gguf](https://huggingface.co/second-state/MiniCPM-o-2_6-GGUF/blob/main/MiniCPM-o-2_6-Q5_0.gguf) | Q5_0 | 5 | 5.31 GB| legacy; medium, balanced quality - prefer using Q4_K_M |
78
+ | [MiniCPM-o-2_6-Q5_K_M.gguf](https://huggingface.co/second-state/MiniCPM-o-2_6-GGUF/blob/main/MiniCPM-o-2_6-Q5_K_M.gguf) | Q5_K_M | 5 | 5.44 GB| large, very low quality loss - recommended |
79
+ | [MiniCPM-o-2_6-Q5_K_S.gguf](https://huggingface.co/second-state/MiniCPM-o-2_6-GGUF/blob/main/MiniCPM-o-2_6-Q5_K_S.gguf) | Q5_K_S | 5 | 5.31 GB| large, low quality loss - recommended |
80
+ | [MiniCPM-o-2_6-Q6_K.gguf](https://huggingface.co/second-state/MiniCPM-o-2_6-GGUF/blob/main/MiniCPM-o-2_6-Q6_K.gguf) | Q6_K | 6 | 6.25 GB| very large, extremely low quality loss |
81
+ | [MiniCPM-o-2_6-Q8_0.gguf](https://huggingface.co/second-state/MiniCPM-o-2_6-GGUF/blob/main/MiniCPM-o-2_6-Q8_0.gguf) | Q8_0 | 8 | 8.10 GB| very large, extremely low quality loss - not recommended |
82
+ | [MiniCPM-o-2_6-f16.gguf](https://huggingface.co/second-state/MiniCPM-o-2_6-GGUF/blob/main/MiniCPM-o-2_6-f16.gguf) | f16 | 16 | 15.2 GB| |
83
+ | [MiniCPM-o-2_6-mmproj-model-f16.gguf](https://huggingface.co/second-state/MiniCPM-o-2_6-GGUF/blob/main/MiniCPM-o-2_6-mmproj-model-f16.gguf) | f16 | 16 | 1.04 GB| |
84
+
85
+ *Quantized with llama.cpp b4869.*