Suparious commited on
Commit
3733180
1 Parent(s): 0cb7c7d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -1
README.md CHANGED
@@ -117,4 +117,27 @@ model-index:
117
  quantized_by: Suparious
118
  language:
119
  - en
120
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  quantized_by: Suparious
118
  language:
119
  - en
120
+ ---
121
+ # perlthoughts/Mistral-7B-Instruct-v0.2-2x7B-MoE AWQ
122
+
123
+
124
+ ## Model Summary
125
+
126
+ Mistral 7B Instruct v0.2 7B (with only 2 experts)
127
+
128
+ The Mistral-7B-Instruct-v0.2 Large Language Model (LLM) is an improved instruct fine-tuned version of [Mistral-7B-Instruct-v0.1](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.1).
129
+
130
+ 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/).
131
+
132
+ ## Instruction format
133
+
134
+ 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.
135
+
136
+ E.g.
137
+ ```
138
+ text = "<s>[INST] What is your favourite condiment? [/INST]"
139
+ "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> "
140
+ "[INST] Do you have mayonnaise recipes? [/INST]"
141
+ ```
142
+
143
+ This format is available as a [chat template](https://huggingface.co/docs/transformers/main/chat_templating) via the `apply_chat_template()` method