johnrachwanpruna commited on
Commit
3c03a14
1 Parent(s): 90cdc85

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +217 -85
README.md CHANGED
@@ -1,88 +1,220 @@
 
1
  ---
2
- license: apache-2.0
3
- pipeline_tag: text-generation
 
 
 
 
 
 
4
  tags:
5
- - finetuned
6
- inference: true
7
- widget:
8
- - messages:
9
- - role: user
10
- content: What is your favorite condiment?
11
  ---
12
-
13
- # Model Card for Mistral-7B-Instruct-v0.2
14
-
15
- The Mistral-7B-Instruct-v0.2 Large Language Model (LLM) is an instruct fine-tuned version of the Mistral-7B-v0.2.
16
-
17
- Mistral-7B-v0.2 has the following changes compared to Mistral-7B-v0.1
18
- - 32k context window (vs 8k context in v0.1)
19
- - Rope-theta = 1e6
20
- - No Sliding-Window Attention
21
-
22
- For full details of this model please read our [paper](https://arxiv.org/abs/2310.06825) and [release blog post](https://mistral.ai/news/la-plateforme/).
23
-
24
- ## Instruction format
25
-
26
- In order to leverage instruction fine-tuning, your prompt should be surrounded by `[INST]` and `[/INST]` tokens. The very first instruction should begin with a begin of sentence id. The next instructions should not. The assistant generation will be ended by the end-of-sentence token id.
27
-
28
- E.g.
29
- ```
30
- text = "<s>[INST] What is your favourite condiment? [/INST]"
31
- "Well, I'm quite partial to a good squeeze of fresh lemon juice. It adds just the right amount of zesty flavour to whatever I'm cooking up in the kitchen!</s> "
32
- "[INST] Do you have mayonnaise recipes? [/INST]"
33
- ```
34
-
35
- This format is available as a [chat template](https://huggingface.co/docs/transformers/main/chat_templating) via the `apply_chat_template()` method:
36
-
37
- ```python
38
- from transformers import AutoModelForCausalLM, AutoTokenizer
39
-
40
- device = "cuda" # the device to load the model onto
41
-
42
- model = AutoModelForCausalLM.from_pretrained("mistralai/Mistral-7B-Instruct-v0.2")
43
- tokenizer = AutoTokenizer.from_pretrained("mistralai/Mistral-7B-Instruct-v0.2")
44
-
45
- messages = [
46
- {"role": "user", "content": "What is your favourite condiment?"},
47
- {"role": "assistant", "content": "Well, I'm quite partial to a good squeeze of fresh lemon juice. It adds just the right amount of zesty flavour to whatever I'm cooking up in the kitchen!"},
48
- {"role": "user", "content": "Do you have mayonnaise recipes?"}
49
- ]
50
-
51
- encodeds = tokenizer.apply_chat_template(messages, return_tensors="pt")
52
-
53
- model_inputs = encodeds.to(device)
54
- model.to(device)
55
-
56
- generated_ids = model.generate(model_inputs, max_new_tokens=1000, do_sample=True)
57
- decoded = tokenizer.batch_decode(generated_ids)
58
- print(decoded[0])
59
- ```
60
-
61
- ## Troubleshooting
62
- - If you see the following error:
63
- ```
64
- Traceback (most recent call last):
65
- File "", line 1, in
66
- File "/transformers/models/auto/auto_factory.py", line 482, in from_pretrained
67
- config, kwargs = AutoConfig.from_pretrained(
68
- File "/transformers/models/auto/configuration_auto.py", line 1022, in from_pretrained
69
- config_class = CONFIG_MAPPING[config_dict["model_type"]]
70
- File "/transformers/models/auto/configuration_auto.py", line 723, in getitem
71
- raise KeyError(key)
72
- KeyError: 'mistral'
73
- ```
74
-
75
- Installing transformers from source should solve the issue
76
- pip install git+https://github.com/huggingface/transformers
77
-
78
- This should not be required after transformers-v4.33.4.
79
-
80
- ## Limitations
81
-
82
- The Mistral 7B Instruct model is a quick demonstration that the base model can be easily fine-tuned to achieve compelling performance.
83
- It does not have any moderation mechanisms. We're looking forward to engaging with the community on ways to
84
- make the model finely respect guardrails, allowing for deployment in environments requiring moderated outputs.
85
-
86
- ## The Mistral AI Team
87
-
88
- Albert Jiang, Alexandre Sablayrolles, Arthur Mensch, Blanche Savary, Chris Bamford, Devendra Singh Chaplot, Diego de las Casas, Emma Bou Hanna, Florian Bressand, Gianna Lengyel, Guillaume Bour, Guillaume Lample, Lélio Renard Lavaud, Louis Ternon, Lucile Saulnier, Marie-Anne Lachaux, Pierre Stock, Teven Le Scao, Théophile Gervet, Thibaut Lavril, Thomas Wang, Timothée Lacroix, William El Sayed.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
  ---
3
+ thumbnail: "https://assets-global.website-files.com/646b351987a8d8ce158d1940/64ec9e96b4334c0e1ac41504_Logo%20with%20white%20text.svg"
4
+ metrics:
5
+ - memory_disk
6
+ - memory_inference
7
+ - inference_latency
8
+ - inference_throughput
9
+ - inference_CO2_emissions
10
+ - inference_energy_consumption
11
  tags:
12
+ - pruna-ai
 
 
 
 
 
13
  ---
14
+ <!-- header start -->
15
+ <!-- 200823 -->
16
+ <div style="width: auto; margin-left: auto; margin-right: auto">
17
+ <a href="https://www.pruna.ai/" target="_blank" rel="noopener noreferrer">
18
+ <img src="https://i.imgur.com/eDAlcgk.png" alt="PrunaAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
19
+ </a>
20
+ </div>
21
+ <!-- header end -->
22
+
23
+ [![Twitter](https://img.shields.io/twitter/follow/PrunaAI?style=social)](https://twitter.com/PrunaAI)
24
+ [![GitHub](https://img.shields.io/github/followers/PrunaAI?label=Follow%20%40PrunaAI&style=social)](https://github.com/PrunaAI)
25
+ [![LinkedIn](https://img.shields.io/badge/LinkedIn-Connect-blue)](https://www.linkedin.com/company/93832878/admin/feed/posts/?feedType=following)
26
+ [![Discord](https://img.shields.io/badge/Discord-Join%20Us-blue?style=social&logo=discord)](https://discord.gg/CP4VSgck)
27
+
28
+ # Simply make AI models cheaper, smaller, faster, and greener!
29
+
30
+ - Give a thumbs up if you like this model!
31
+ - Contact us and tell us which model to compress next [here](https://www.pruna.ai/contact).
32
+ - Request access to easily compress your *own* AI models [here](https://z0halsaff74.typeform.com/pruna-access?typeform-source=www.pruna.ai).
33
+ - Read the documentations to know more [here](https://pruna-ai-pruna.readthedocs-hosted.com/en/latest/)
34
+ - Join Pruna AI community on Discord [here](https://discord.gg/CP4VSgck) to share feedback/suggestions or get help.
35
+
36
+ **Frequently Asked Questions**
37
+ - ***How does the compression work?*** The model is compressed with GGUF.
38
+ - ***How does the model quality change?*** The quality of the model output might vary compared to the base model.
39
+ - ***What is the model format?*** We use GGUF format.
40
+ - ***What calibration data has been used?*** If needed by the compression method, we used WikiText as the calibration data.
41
+ - ***How to compress my own models?*** You can request premium access to more compression methods and tech support for your specific use-cases [here](https://z0halsaff74.typeform.com/pruna-access?typeform-source=www.pruna.ai).
42
+
43
+ # Downloading and running the models
44
+
45
+ You can download the individual files from the Files & versions section. Here is a list of the different versions we provide. For more info checkout [this chart](https://gist.github.com/Artefact2/b5f810600771265fc1e39442288e8ec9) and [this guide](https://www.reddit.com/r/LocalLLaMA/comments/1ba55rj/overview_of_gguf_quantization_methods/):
46
+
47
+ | Quant type | Description |
48
+ |------------|--------------------------------------------------------------------------------------------|
49
+ | Q5_K_M | High quality, recommended. |
50
+ | Q5_K_S | High quality, recommended. |
51
+ | Q4_K_M | Good quality, uses about 4.83 bits per weight, recommended. |
52
+ | Q4_K_S | Slightly lower quality with more space savings, recommended. |
53
+ | IQ4_NL | Decent quality, slightly smaller than Q4_K_S with similar performance, recommended. |
54
+ | IQ4_XS | Decent quality, smaller than Q4_K_S with similar performance, recommended. |
55
+ | Q3_K_L | Lower quality but usable, good for low RAM availability. |
56
+ | Q3_K_M | Even lower quality. |
57
+ | IQ3_M | Medium-low quality, new method with decent performance comparable to Q3_K_M. |
58
+ | IQ3_S | Lower quality, new method with decent performance, recommended over Q3_K_S quant, same size with better performance. |
59
+ | Q3_K_S | Low quality, not recommended. |
60
+ | IQ3_XS | Lower quality, new method with decent performance, slightly better than Q3_K_S. |
61
+ | Q2_K | Very low quality but surprisingly usable. |
62
+
63
+
64
+ ## How to download GGUF files ?
65
+
66
+ **Note for manual downloaders:** You almost never want to clone the entire repo! Multiple different quantisation formats are provided, and most users only want to pick and download a single file.
67
+
68
+ The following clients/libraries will automatically download models for you, providing a list of available models to choose from:
69
+
70
+ * LM Studio
71
+ * LoLLMS Web UI
72
+ * Faraday.dev
73
+
74
+ - **Option A** - Downloading in `text-generation-webui`:
75
+ - **Step 1**: Under Download Model, you can enter the model repo: PrunaAI/Mistral-7B-Instruct-v0.2-GGUF-smashed-smashed and below it, a specific filename to download, such as: phi-2.IQ3_M.gguf.
76
+ - **Step 2**: Then click Download.
77
+
78
+ - **Option B** - Downloading on the command line (including multiple files at once):
79
+ - **Step 1**: We recommend using the `huggingface-hub` Python library:
80
+ ```shell
81
+ pip3 install huggingface-hub
82
+ ```
83
+ - **Step 2**: Then you can download any individual model file to the current directory, at high speed, with a command like this:
84
+ ```shell
85
+ huggingface-cli download PrunaAI/Mistral-7B-Instruct-v0.2-GGUF-smashed-smashed Mistral-7B-Instruct-v0.2.IQ3_M.gguf --local-dir . --local-dir-use-symlinks False
86
+ ```
87
+ <details>
88
+ <summary>More advanced huggingface-cli download usage (click to read)</summary>
89
+ Alternatively, you can also download multiple files at once with a pattern:
90
+
91
+ ```shell
92
+ huggingface-cli download PrunaAI/Mistral-7B-Instruct-v0.2-GGUF-smashed-smashed --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf'
93
+ ```
94
+
95
+ For more documentation on downloading with `huggingface-cli`, please see: [HF -> Hub Python Library -> Download files -> Download from the CLI](https://huggingface.co/docs/huggingface_hub/guides/download#download-from-the-cli).
96
+
97
+ To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`:
98
+
99
+ ```shell
100
+ pip3 install hf_transfer
101
+ ```
102
+
103
+ And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`:
104
+
105
+ ```shell
106
+ HF_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download PrunaAI/Mistral-7B-Instruct-v0.2-GGUF-smashed-smashed Mistral-7B-Instruct-v0.2.IQ3_M.gguf --local-dir . --local-dir-use-symlinks False
107
+ ```
108
+
109
+ Windows Command Line users: You can set the environment variable by running `set HF_HUB_ENABLE_HF_TRANSFER=1` before the download command.
110
+ </details>
111
+ <!-- README_GGUF.md-how-to-download end -->
112
+
113
+ <!-- README_GGUF.md-how-to-run start -->
114
+
115
+ ## How to run model in GGUF format?
116
+ - **Option A** - Introductory example with `llama.cpp` command
117
+
118
+ Make sure you are using `llama.cpp` from commit [d0cee0d](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) or later.
119
+
120
+ ```shell
121
+ ./main -ngl 35 -m Mistral-7B-Instruct-v0.2.IQ3_M.gguf --color -c 32768 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "<s>[INST] {prompt\} [/INST]"
122
+ ```
123
+
124
+ Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
125
+
126
+ Change `-c 32768` to the desired sequence length. For extended sequence models - eg 8K, 16K, 32K - the necessary RoPE scaling parameters are read from the GGUF file and set by llama.cpp automatically. Note that longer sequence lengths require much more resources, so you may need to reduce this value.
127
+
128
+ If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
129
+
130
+ For other parameters and how to use them, please refer to [the llama.cpp documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/main/README.md)
131
+
132
+ - **Option B** - Running in `text-generation-webui`
133
+
134
+ Further instructions can be found in the text-generation-webui documentation, here: [text-generation-webui/docs/04 ‐ Model Tab.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/04%20%E2%80%90%20Model%20Tab.md#llamacpp).
135
+
136
+ - **Option C** - Running from Python code
137
+
138
+ You can use GGUF models from Python using the [llama-cpp-python](https://github.com/abetlen/llama-cpp-python) or [ctransformers](https://github.com/marella/ctransformers) libraries. Note that at the time of writing (Nov 27th 2023), ctransformers has not been updated for some time and is not compatible with some recent models. Therefore I recommend you use llama-cpp-python.
139
+
140
+ ### How to load this model in Python code, using llama-cpp-python
141
+
142
+ For full documentation, please see: [llama-cpp-python docs](https://abetlen.github.io/llama-cpp-python/).
143
+
144
+ #### First install the package
145
+
146
+ Run one of the following commands, according to your system:
147
+
148
+ ```shell
149
+ # Base ctransformers with no GPU acceleration
150
+ pip install llama-cpp-python
151
+ # With NVidia CUDA acceleration
152
+ CMAKE_ARGS="-DLLAMA_CUBLAS=on" pip install llama-cpp-python
153
+ # Or with OpenBLAS acceleration
154
+ CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" pip install llama-cpp-python
155
+ # Or with CLBLast acceleration
156
+ CMAKE_ARGS="-DLLAMA_CLBLAST=on" pip install llama-cpp-python
157
+ # Or with AMD ROCm GPU acceleration (Linux only)
158
+ CMAKE_ARGS="-DLLAMA_HIPBLAS=on" pip install llama-cpp-python
159
+ # Or with Metal GPU acceleration for macOS systems only
160
+ CMAKE_ARGS="-DLLAMA_METAL=on" pip install llama-cpp-python
161
+
162
+ # In windows, to set the variables CMAKE_ARGS in PowerShell, follow this format; eg for NVidia CUDA:
163
+ $env:CMAKE_ARGS = "-DLLAMA_OPENBLAS=on"
164
+ pip install llama-cpp-python
165
+ ```
166
+
167
+ #### Simple llama-cpp-python example code
168
+
169
+ ```python
170
+ from llama_cpp import Llama
171
+
172
+ # Set gpu_layers to the number of layers to offload to GPU. Set to 0 if no GPU acceleration is available on your system.
173
+ llm = Llama(
174
+ model_path="./Mistral-7B-Instruct-v0.2.IQ3_M.gguf", # Download the model file first
175
+ n_ctx=32768, # The max sequence length to use - note that longer sequence lengths require much more resources
176
+ n_threads=8, # The number of CPU threads to use, tailor to your system and the resulting performance
177
+ n_gpu_layers=35 # The number of layers to offload to GPU, if you have GPU acceleration available
178
+ )
179
+
180
+ # Simple inference example
181
+ output = llm(
182
+ "<s>[INST] {prompt} [/INST]", # Prompt
183
+ max_tokens=512, # Generate up to 512 tokens
184
+ stop=["</s>"], # Example stop token - not necessarily correct for this specific model! Please check before using.
185
+ echo=True # Whether to echo the prompt
186
+ )
187
+
188
+ # Chat Completion API
189
+
190
+ llm = Llama(model_path="./Mistral-7B-Instruct-v0.2.IQ3_M.gguf", chat_format="llama-2") # Set chat_format according to the model you are using
191
+ llm.create_chat_completion(
192
+ messages = [
193
+ {"role": "system", "content": "You are a story writing assistant."},
194
+ {
195
+ "role": "user",
196
+ "content": "Write a story about llamas."
197
+ }
198
+ ]
199
+ )
200
+ ```
201
+
202
+ - **Option D** - Running with LangChain
203
+
204
+ Here are guides on using llama-cpp-python and ctransformers with LangChain:
205
+
206
+ * [LangChain + llama-cpp-python](https://python.langchain.com/docs/integrations/llms/llamacpp)
207
+ * [LangChain + ctransformers](https://python.langchain.com/docs/integrations/providers/ctransformers)
208
+
209
+ ## Configurations
210
+
211
+ The configuration info are in `smash_config.json`.
212
+
213
+ ## Credits & License
214
+
215
+ The license of the smashed model follows the license of the original model. Please check the license of the original model before using this model which provided the base model. The license of the `pruna-engine` is [here](https://pypi.org/project/pruna-engine/) on Pypi.
216
+
217
+ ## Want to compress other models?
218
+
219
+ - Contact us and tell us which model to compress next [here](https://www.pruna.ai/contact).
220
+ - Request access to easily compress your own AI models [here](https://z0halsaff74.typeform.com/pruna-access?typeform-source=www.pruna.ai).