perlthoughts commited on
Commit
2fd8d5f
1 Parent(s): 11102c4

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +364 -0
README.md ADDED
@@ -0,0 +1,364 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ inference: false
4
+ ---
5
+
6
+ # MistralLite 11B Model
7
+
8
+ # Original Model Card
9
+
10
+ MistralLite is a fine-tuned [Mistral-7B-v0.1](https://huggingface.co/mistralai/Mistral-7B-v0.1) language model, with enhanced capabilities of processing long context (up to 32K tokens). By utilizing an adapted Rotary Embedding and sliding window during fine-tuning, MistralLite is able to **perform significantly better on several long context retrieve and answering tasks**, while keeping the simple model structure of the original model. MistralLite is useful for applications such as long context line and topic retrieval, summarization, question-answering, and etc. MistralLite can be deployed on a single AWS `g5.2x` instance with Sagemaker [Huggingface Text Generation Inference (TGI)](https://github.com/huggingface/text-generation-inference) endpoint, making it suitable for applications that require high performance in resource-constrained environments. You can also serve the MistralLite model directly using TGI docker containers. Also, MistralLite supports other ways of serving like [vLLM](https://github.com/vllm-project/vllm), and you can use MistralLite in Python by using the [HuggingFace transformers](https://huggingface.co/docs/transformers/index) and [FlashAttention-2](https://github.com/Dao-AILab/flash-attention) library.
11
+
12
+ MistralLite is similar to [Mistral-7B-Instruct-v0.1](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.1), and their similarities and differences are summarized below:
13
+ |Model|Fine-tuned on long contexts| Max context length| RotaryEmbedding adaptation| Sliding Window Size|
14
+ |----------|-------------:|------------:|-----------:|-----------:|
15
+ | Mistral-7B-Instruct-v0.1 | up to 8K tokens | 32K | rope_theta = 10000 | 4096 |
16
+ | MistralLite | up to 16K tokens | 32K | **rope_theta = 1000000** | **16384** |
17
+
18
+ **Important - Use the prompt template below for MistralLite:**
19
+
20
+ ```<|prompter|>What are the main challenges to support a long context for LLM?</s><|assistant|>```
21
+
22
+ ## Motivation of Developing MistralLite
23
+
24
+ Since the release of [Mistral-7B-Instruct-v0.1](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.1), the model became increasingly popular because its strong performance
25
+ on a wide range of benchmarks. But most of the benchmarks are evaluated on `short context`, and not much has been investigated on its performance on long context tasks.
26
+ Then We evaluated `Mistral-7B-Instruct-v0.1` against benchmarks that are specifically designed to assess the capabilities of LLMs in handling longer context.
27
+ Although the performance of the models on long context was fairly competitive on long context less than 4096 tokens,
28
+ there were some limitations on its performance on longer context. Motivated by improving its performance on longer context, we finetuned the Mistral 7B model, and produced `Mistrallite`. The model managed to `significantly boost the performance of long context handling` over Mistral-7B-Instruct-v0.1. The detailed `long context evalutaion results` are as below:
29
+
30
+ 1. [Topic Retrieval](https://lmsys.org/blog/2023-06-29-longchat/)
31
+ |Model Name|Input length| Input length | Input length| Input length| Input length|
32
+ |----------|-------------:|-------------:|------------:|-----------:|-----------:|
33
+ | | 2851| 5568 |8313 | 11044 | 13780
34
+ | Mistral-7B-Instruct-v0.1 | 100% | 50% | 2% | 0% | 0% |
35
+ | MistralLite | **100%** | **100%** | **100%** | **100%** | **98%** |
36
+
37
+ 2. [Line Retrieval](https://lmsys.org/blog/2023-06-29-longchat/#longeval-results)
38
+
39
+ |Model Name|Input length| Input length | Input length| Input length| Input length|Input length|
40
+ |----------|-------------:|-------------:|------------:|-----------:|-----------:|-----------:|
41
+ | | 3818| 5661 |7505 | 9354 | 11188 | 12657
42
+ | Mistral-7B-Instruct-v0.1 | **98%** | 62% | 42% | 42% | 32% | 30% |
43
+ | MistralLite | **98%** | **92%** | **88%** | **76%** | **70%** | **60%** |
44
+
45
+ 3. [Pass key Retrieval](https://github.com/epfml/landmark-attention/blob/main/llama/run_test.py#L101)
46
+
47
+ |Model Name|Input length| Input length | Input length| Input length|
48
+ |----------|-------------:|-------------:|------------:|-----------:|
49
+ | | 3264| 5396 |8329 | 10197 |
50
+ | Mistral-7B-Instruct-v0.1 | **100%** | 50% | 20% | 30% |
51
+ | MistralLite | **100%** | **100%** | **100%** | **100%** |
52
+
53
+ 4. [Question Answering with Long Input Texts](https://nyu-mll.github.io/quality/)
54
+ |Model Name| Test set Accuracy | Hard subset Accuracy|
55
+ |----------|-------------:|-------------:|
56
+ | Mistral-7B-Instruct-v0.1 | 44.3% | 39.7% |
57
+ | MistralLite | **64.4%** | **56.2%** |
58
+
59
+ ### Example test on long context of 13400 tokens
60
+ - Context is from [Amazon Aurora FAQs](https://aws.amazon.com/rds/aurora/faqs/)
61
+ - Question: *please tell me how does pgvector help with Generative AI and give me some examples.*
62
+ - Answer from MistralLite:
63
+ ```code
64
+ pgvector is an open-source extension for PostgreSQL supported by Amazon Aurora PostgreSQL-Compatible Edition.
65
+
66
+ You can use pgvector to store, search, index, and query billions of embeddings that are generated from machine learning (ML) and artificial intelligence (AI) models in your database, such as those from Amazon Bedrock (limited preview) or Amazon SageMaker. A vector embedding is a numerical representation that represents the semantic meaning of content such as text, images, and video.
67
+
68
+ With pgvector, you can query embeddings in your Aurora PostgreSQL database to perform efficient semantic similarity searches of these data types, represented as vectors, combined with other tabular data in Aurora. This enables the use of generative AI and other AI/ML systems for new types of applications such as personalized recommendations based on similar text descriptions or images, candidate match based on interview notes, customer service next best action recommendations based on successful transcripts or chat session dialogs, and more.
69
+ ```
70
+
71
+ ## Model Details
72
+
73
+ - **Developed by:** [AWS Contributors](https://github.com/orgs/aws-samples/teams/aws-prototype-ml-apac)
74
+ - **Model type:** [Mistral-7B-v0.1](https://huggingface.co/mistralai/Mistral-7B-v0.1)
75
+ - **Language:** English
76
+ - **Finetuned from weights:** [Mistral-7B-v0.1](https://huggingface.co/mistralai/Mistral-7B-v0.1)
77
+ - **Finetuned on data:**
78
+ - [SLidingEncoder and Decoder (SLED)](https://huggingface.co/datasets/tau/sled)
79
+ - [(Long) Natural Questions (NQ)](https://huggingface.co/datasets/togethercomputer/Long-Data-Collections#multi-passage-qa-from-natural-questions)
80
+ - [OpenAssistant Conversations Dataset (OASST1)](https://huggingface.co/datasets/OpenAssistant/oasst1)
81
+ - **Supported Serving Framework:**
82
+ - [Text-Generation-Inference 1.1.0](https://github.com/huggingface/text-generation-inference/tree/v1.1.0)
83
+ - [vLLM](https://github.com/vllm-project/vllm)
84
+ - [HuggingFace transformers](https://huggingface.co/docs/transformers/index)
85
+ - [HuggingFace Text Generation Inference (TGI) container on SageMaker](https://github.com/awslabs/llm-hosting-container)
86
+ - **Model License:** Apache 2.0
87
+ - **Contact:** [GitHub issues](https://github.com/awslabs/extending-the-context-length-of-open-source-llms/issues)
88
+ - **Inference Code** [Github Repo](https://github.com/awslabs/extending-the-context-length-of-open-source-llms/blob/main/MistralLite/)
89
+
90
+ ## MistralLite LM-Eval Results
91
+
92
+ ### Methodology
93
+
94
+ - Please see https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
95
+ - revision=4ececff
96
+ - Note: we used --model hf-causal-experimental instead of --model hf-causal
97
+
98
+ ### Results
99
+
100
+ |Average|hellaswag| arc_challenge|truthful_qa (mc2)| MMLU (acc)|
101
+ |----------|-------------:|------------:|-----------:|-----------:|
102
+ | 0.57221 | 0.81617 | 0.58874 | 0.38275 | 0.5012 |
103
+
104
+ ## How to Use MistralLite from Python Code (HuggingFace transformers) ##
105
+
106
+ **Important** - For an end-to-end example Jupyter notebook, please refer to [this link](https://github.com/awslabs/extending-the-context-length-of-open-source-llms/blob/main/MistralLite/huggingface-transformers/example_usage.ipynb).
107
+
108
+ ### Install the necessary packages
109
+
110
+ Requires: [transformers](https://pypi.org/project/transformers/) 4.34.0 or later, [flash-attn](https://pypi.org/project/flash-attn/) 2.3.1.post1 or later,
111
+ and [accelerate](https://pypi.org/project/accelerate/) 0.23.0 or later.
112
+
113
+ ```shell
114
+ pip install transformers==4.34.0
115
+ pip install flash-attn==2.3.1.post1 --no-build-isolation
116
+ pip install accelerate==0.23.0
117
+ ```
118
+ ### You can then try the following example code
119
+
120
+ ```python
121
+ from transformers import AutoModelForCausalLM, AutoTokenizer
122
+ import transformers
123
+ import torch
124
+
125
+ model_id = "amazon/MistralLite"
126
+
127
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
128
+ model = AutoModelForCausalLM.from_pretrained(model_id,
129
+ torch_dtype=torch.bfloat16,
130
+ use_flash_attention_2=True,
131
+ device_map="auto",)
132
+ pipeline = transformers.pipeline(
133
+ "text-generation",
134
+ model=model,
135
+ tokenizer=tokenizer,
136
+ )
137
+ prompt = "<|prompter|>What are the main challenges to support a long context for LLM?</s><|assistant|>"
138
+
139
+ sequences = pipeline(
140
+ prompt,
141
+ max_new_tokens=400,
142
+ do_sample=False,
143
+ return_full_text=False,
144
+ num_return_sequences=1,
145
+ eos_token_id=tokenizer.eos_token_id,
146
+ )
147
+ for seq in sequences:
148
+ print(f"{seq['generated_text']}")
149
+ ```
150
+ **Important** - Use the prompt template below for MistralLite:
151
+ ```
152
+ <|prompter|>What are the main challenges to support a long context for LLM?</s><|assistant|>
153
+ ```
154
+
155
+ ## How to Serve MistralLite on TGI ##
156
+ **Important:**
157
+ - For an end-to-end example Jupyter notebook using the native TGI container, please refer to [this link](https://github.com/awslabs/extending-the-context-length-of-open-source-llms/blob/main/MistralLite/tgi/example_usage.ipynb).
158
+ - If the **input context length is greater than 12K tokens**, it is recommended using a custom TGI container, please refer to [this link](https://github.com/awslabs/extending-the-context-length-of-open-source-llms/blob/main/MistralLite/tgi-custom/example_usage.ipynb).
159
+
160
+ ### Start TGI server ###
161
+ Use TGI version 1.1.0 or later. The official Docker container is: `ghcr.io/huggingface/text-generation-inference:1.1.0`
162
+
163
+ Example Docker parameters:
164
+
165
+ ```shell
166
+ docker run -d --gpus all --shm-size 1g -p 443:80 -v $(pwd)/models:/data ghcr.io/huggingface/text-generation-inference:1.1.0 \
167
+ --model-id amazon/MistralLite \
168
+ --max-input-length 16000 \
169
+ --max-total-tokens 16384 \
170
+ --max-batch-prefill-tokens 16384 \
171
+ --trust-remote-code
172
+ ```
173
+
174
+ ### Perform Inference ###
175
+ Example Python code for inference with TGI (requires `text_generation` 0.6.1 or later):
176
+
177
+ ```shell
178
+ pip install text_generation==0.6.1
179
+ ```
180
+
181
+ ```python
182
+ from text_generation import Client
183
+
184
+ SERVER_PORT = 443
185
+ SERVER_HOST = "localhost"
186
+ SERVER_URL = f"{SERVER_HOST}:{SERVER_PORT}"
187
+ tgi_client = Client(f"http://{SERVER_URL}", timeout=60)
188
+
189
+ def invoke_tgi(prompt,
190
+ random_seed=1,
191
+ max_new_tokens=400,
192
+ print_stream=True,
193
+ assist_role=True):
194
+ if (assist_role):
195
+ prompt = f"<|prompter|>{prompt}</s><|assistant|>"
196
+ output = ""
197
+ for response in tgi_client.generate_stream(
198
+ prompt,
199
+ do_sample=False,
200
+ max_new_tokens=max_new_tokens,
201
+ return_full_text=False,
202
+ #temperature=None,
203
+ #truncate=None,
204
+ #seed=random_seed,
205
+ #typical_p=0.2,
206
+ ):
207
+ if hasattr(response, "token"):
208
+ if not response.token.special:
209
+ snippet = response.token.text
210
+ output += snippet
211
+ if (print_stream):
212
+ print(snippet, end='', flush=True)
213
+ return output
214
+
215
+ prompt = "What are the main challenges to support a long context for LLM?"
216
+ result = invoke_tgi(prompt)
217
+ ```
218
+
219
+ **Important** - When using MistralLite for inference for the first time, it may require a brief 'warm-up' period that can take 10s of seconds. However, subsequent inferences should be faster and return results in a more timely manner. This warm-up period is normal and should not affect the overall performance of the system once the initialisation period has been completed.
220
+
221
+
222
+ ## How to Deploy MistralLite on Amazon SageMaker ##
223
+ **Important:**
224
+ - For an end-to-end example Jupyter notebook using the SageMaker built-in container, please refer to [this link](https://github.com/awslabs/extending-the-context-length-of-open-source-llms/blob/main/MistralLite/sagemaker-tgi/example_usage.ipynb).
225
+ - If the **input context length is greater than 12K tokens**, it is recommended using a custom docker container, please refer to [this link](https://github.com/awslabs/extending-the-context-length-of-open-source-llms/blob/main/MistralLite/sagemaker-tgi-custom/example_usage.ipynb).
226
+
227
+ ### Install the necessary packages
228
+
229
+ Requires: [sagemaker](https://pypi.org/project/sagemaker/) 2.192.1 or later.
230
+
231
+ ```shell
232
+ pip install sagemaker==2.192.1
233
+ ```
234
+
235
+ ### Deploy the Model as A SageMaker Endpoint ###
236
+ To deploy MistralLite on a SageMaker endpoint, please follow the example code as below.
237
+ ```python
238
+ import sagemaker
239
+ from sagemaker.huggingface import HuggingFaceModel, get_huggingface_llm_image_uri
240
+ import time
241
+
242
+ sagemaker_session = sagemaker.Session()
243
+ region = sagemaker_session.boto_region_name
244
+ role = sagemaker.get_execution_role()
245
+
246
+ image_uri = get_huggingface_llm_image_uri(
247
+ backend="huggingface", # or lmi
248
+ region=region,
249
+ version="1.1.0"
250
+ )
251
+
252
+ model_name = "MistralLite-" + time.strftime("%Y-%m-%d-%H-%M-%S", time.gmtime())
253
+
254
+ hub = {
255
+ 'HF_MODEL_ID':'amazon/MistralLite',
256
+ 'HF_TASK':'text-generation',
257
+ 'SM_NUM_GPUS':'1',
258
+ "MAX_INPUT_LENGTH": '16000',
259
+ "MAX_TOTAL_TOKENS": '16384',
260
+ "MAX_BATCH_PREFILL_TOKENS": '16384',
261
+ "MAX_BATCH_TOTAL_TOKENS": '16384',
262
+ }
263
+
264
+ model = HuggingFaceModel(
265
+ name=model_name,
266
+ env=hub,
267
+ role=role,
268
+ image_uri=image_uri
269
+ )
270
+ predictor = model.deploy(
271
+ initial_instance_count=1,
272
+ instance_type="ml.g5.2xlarge",
273
+ endpoint_name=model_name,
274
+
275
+ )
276
+ ```
277
+
278
+ ### Perform Inference ###
279
+ To call the endpoint, please follow the example code as below:
280
+
281
+ ```python
282
+ input_data = {
283
+ "inputs": "<|prompter|>What are the main challenges to support a long context for LLM?</s><|assistant|>",
284
+ "parameters": {
285
+ "do_sample": False,
286
+ "max_new_tokens": 400,
287
+ "return_full_text": False,
288
+ #"typical_p": 0.2,
289
+ #"temperature":None,
290
+ #"truncate":None,
291
+ #"seed": 1,
292
+ }
293
+ }
294
+ result = predictor.predict(input_data)[0]["generated_text"]
295
+ print(result)
296
+ ```
297
+ or via [boto3](https://pypi.org/project/boto3/), and the example code is shown as below:
298
+
299
+ ```python
300
+ import boto3
301
+ import json
302
+ def call_endpoint(client, prompt, endpoint_name, paramters):
303
+ client = boto3.client("sagemaker-runtime")
304
+ payload = {"inputs": prompt,
305
+ "parameters": parameters}
306
+ response = client.invoke_endpoint(EndpointName=endpoint_name,
307
+ Body=json.dumps(payload),
308
+ ContentType="application/json")
309
+ output = json.loads(response["Body"].read().decode())
310
+ result = output[0]["generated_text"]
311
+ return result
312
+
313
+ client = boto3.client("sagemaker-runtime")
314
+ parameters = {
315
+ "do_sample": False,
316
+ "max_new_tokens": 400,
317
+ "return_full_text": False,
318
+ #"typical_p": 0.2,
319
+ #"temperature":None,
320
+ #"truncate":None,
321
+ #"seed": 1,
322
+ }
323
+ endpoint_name = predictor.endpoint_name
324
+ prompt = "<|prompter|>What are the main challenges to support a long context for LLM?</s><|assistant|>"
325
+ result = call_endpoint(client, prompt, endpoint_name, parameters)
326
+ print(result)
327
+ ```
328
+
329
+
330
+ ## How to Serve MistralLite on vLLM ##
331
+ Documentation on installing and using vLLM [can be found here](https://vllm.readthedocs.io/en/latest/).
332
+
333
+ **Important** - For an end-to-end example Jupyter notebook, please refer to [this link](https://github.com/awslabs/extending-the-context-length-of-open-source-llms/blob/main/MistralLite/vllm/example_usage.ipynb).
334
+
335
+ ### Using vLLM as a server ###
336
+ When using vLLM as a server, pass the --model amazon/MistralLite parameter, for example:
337
+ ```shell
338
+ python3 -m vllm.entrypoints.api_server --model amazon/MistralLite
339
+ ```
340
+
341
+ ### Using vLLM in Python Code ###
342
+ When using vLLM from Python code, Please see the example code as below:
343
+
344
+ ```python
345
+ from vllm import LLM, SamplingParams
346
+
347
+ prompts = [
348
+ "<|prompter|>What are the main challenges to support a long context for LLM?</s><|assistant|>",
349
+ ]
350
+ sampling_params = SamplingParams(temperature=0, max_tokens=100)
351
+
352
+ llm = LLM(model="amazon/MistralLite",)
353
+
354
+ outputs = llm.generate(prompts, sampling_params)
355
+
356
+ # Print the outputs.
357
+ for output in outputs:
358
+ prompt = output.prompt
359
+ generated_text = output.outputs[0].text
360
+ print(f"Prompt: {prompt!r}, Generated text: {generated_text!r}")
361
+ ```
362
+
363
+ ## Limitations ##
364
+ Before using the MistralLite model, it is important to perform your own independent assessment, and take measures to ensure that your use would comply with your own specific quality control practices and standards, and that your use would comply with the local rules, laws, regulations, licenses and terms that apply to you, and your content.