apepkuss79 commited on
Commit
471455e
1 Parent(s): a6062ee

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +86 -1
README.md CHANGED
@@ -1,3 +1,88 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ license_name: mrl
4
+ license_link: https://mistral.ai/licenses/MRL-0.1.md
5
+ model_name: Mistral-Large-Instruct-2407
6
+ base_model: mistralai/Mistral-Large-Instruct-2407
7
+ model_creator: mistralai
8
+ quantized_by: Second State Inc.
9
+ language:
10
+ - en
11
+ - fr
12
+ - de
13
+ - es
14
+ - it
15
+ - pt
16
+ - zh
17
+ - ja
18
+ - ru
19
+ - ko
20
  ---
21
+
22
+ <!-- header start -->
23
+ <!-- 200823 -->
24
+ <div style="width: auto; margin-left: auto; margin-right: auto">
25
+ <img src="https://github.com/LlamaEdge/LlamaEdge/raw/dev/assets/logo.svg" style="width: 100%; min-width: 400px; display: block; margin: auto;">
26
+ </div>
27
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
28
+ <!-- header end -->
29
+
30
+ # Mistral-Large-Instruct-2407-GGUF
31
+
32
+ ## Original Model
33
+
34
+ [mistralai/Mistral-Large-Instruct-2407](https://huggingface.co/mistralai/Mistral-Large-Instruct-2407)
35
+ ## Run with LlamaEdge
36
+
37
+ - LlamaEdge version: [v0.11.2](https://github.com/LlamaEdge/LlamaEdge/releases/tag/0.11.2)
38
+
39
+ - Prompt template
40
+
41
+ - Prompt type: `mistral-instruct`
42
+
43
+ - Prompt string
44
+
45
+ ```text
46
+ <s>[INST] {user_message_1} [/INST]{assistant_message_1}</s>[INST] {user_message_2} [/INST]{assistant_message_2}</s>
47
+ ```
48
+
49
+ - Context size: `128000`
50
+
51
+ - Run as LlamaEdge service
52
+
53
+ ```bash
54
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:Mistral-Large-Instruct-2407-Q5_K_M.gguf \
55
+ llama-api-server.wasm \
56
+ --prompt-template mistral-instruct \
57
+ --ctx-size 128000 \
58
+ --model-name Mistral-Large-Instruct-2407
59
+ ```
60
+
61
+ - Run as LlamaEdge command app
62
+
63
+ ```bash
64
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:Mistral-Large-Instruct-2407-Q5_K_M.gguf \
65
+ llama-chat.wasm \
66
+ --prompt-template mistral-instruct \
67
+ --ctx-size 32000
68
+ ```
69
+
70
+ ## Quantized GGUF Models
71
+
72
+ | Name | Quant method | Bits | Size | Use case |
73
+ | ---- | ---- | ---- | ---- | ----- |
74
+ | [Mistral-Large-Instruct-2407-Q2_K.gguf](https://huggingface.co/second-state/Mistral-Large-Instruct-2407-GGUF/blob/main/Mistral-Large-Instruct-2407-Q2_K.gguf) | Q2_K | 2 | 2.72 GB| smallest, significant quality loss - not recommended for most purposes |
75
+ | [Mistral-Large-Instruct-2407-Q3_K_L.gguf](https://huggingface.co/second-state/Mistral-Large-Instruct-2407-GGUF/blob/main/Mistral-Large-Instruct-2407-Q3_K_L.gguf) | Q3_K_L | 3 | 3.83 GB| small, substantial quality loss |
76
+ | [Mistral-Large-Instruct-2407-Q3_K_M.gguf](https://huggingface.co/second-state/Mistral-Large-Instruct-2407-GGUF/blob/main/Mistral-Large-Instruct-2407-Q3_K_M.gguf) | Q3_K_M | 3 | 3.52 GB| very small, high quality loss |
77
+ | [Mistral-Large-Instruct-2407-Q3_K_S.gguf](https://huggingface.co/second-state/Mistral-Large-Instruct-2407-GGUF/blob/main/Mistral-Large-Instruct-2407-Q3_K_S.gguf) | Q3_K_S | 3 | 3.17 GB| very small, high quality loss |
78
+ | [Mistral-Large-Instruct-2407-Q4_0.gguf](https://huggingface.co/second-state/Mistral-Large-Instruct-2407-GGUF/blob/main/Mistral-Large-Instruct-2407-Q4_0.gguf) | Q4_0 | 4 | 4.11 GB| legacy; small, very high quality loss - prefer using Q3_K_M |
79
+ | [Mistral-Large-Instruct-2407-Q4_K_M.gguf](https://huggingface.co/second-state/Mistral-Large-Instruct-2407-GGUF/blob/main/Mistral-Large-Instruct-2407-Q4_K_M.gguf) | Q4_K_M | 4 | 4.37 GB| medium, balanced quality - recommended |
80
+ | [Mistral-Large-Instruct-2407-Q4_K_S.gguf](https://huggingface.co/second-state/Mistral-Large-Instruct-2407-GGUF/blob/main/Mistral-Large-Instruct-2407-Q4_K_S.gguf) | Q4_K_S | 4 | 4.14 GB| small, greater quality loss |
81
+ | [Mistral-Large-Instruct-2407-Q5_0.gguf](https://huggingface.co/second-state/Mistral-Large-Instruct-2407-GGUF/blob/main/Mistral-Large-Instruct-2407-Q5_0.gguf) | Q5_0 | 5 | 5 GB| legacy; medium, balanced quality - prefer using Q4_K_M |
82
+ | [Mistral-Large-Instruct-2407-Q5_K_M.gguf](https://huggingface.co/second-state/Mistral-Large-Instruct-2407-GGUF/blob/main/Mistral-Large-Instruct-2407-Q5_K_M.gguf) | Q5_K_M | 5 | 5.14 GB| large, very low quality loss - recommended |
83
+ | [Mistral-Large-Instruct-2407-Q5_K_S.gguf](https://huggingface.co/second-state/Mistral-Large-Instruct-2407-GGUF/blob/main/Mistral-Large-Instruct-2407-Q5_K_S.gguf) | Q5_K_S | 5 | 5 GB| large, low quality loss - recommended |
84
+ | [Mistral-Large-Instruct-2407-Q6_K.gguf](https://huggingface.co/second-state/Mistral-Large-Instruct-2407-GGUF/blob/main/Mistral-Large-Instruct-2407-Q6_K.gguf) | Q6_K | 6 | 5.95 GB| very large, extremely low quality loss |
85
+ | [Mistral-Large-Instruct-2407-Q8_0.gguf](https://huggingface.co/second-state/Mistral-Large-Instruct-2407-GGUF/blob/main/Mistral-Large-Instruct-2407-Q8_0.gguf) | Q8_0 | 8 | 7.7 GB| very large, extremely low quality loss - not recommended |
86
+ | [Mistral-Large-Instruct-2407-f16.gguf](https://huggingface.co/second-state/Mistral-Large-Instruct-2407-GGUF/blob/main/Mistral-Large-Instruct-2407-f16.gguf) | f16 | 16 | 14.5 GB| |
87
+
88
+ *Quantized with llama.cpp b3499.*