mwitiderrick commited on
Commit
db25206
1 Parent(s): 073d996

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +71 -0
README.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: TinyLlama/TinyLlama-1.1B-Chat-v1.0
3
+ inference: false
4
+ model_type: llama
5
+ prompt_template: |
6
+ <|im_start|>user\n
7
+ {prompt}<|im_end|>\n
8
+ <|im_start|>assistant\n
9
+ quantized_by: mwitiderrick
10
+ tags:
11
+ - deepsparse
12
+ ---
13
+ ## TinyLlama 1.1B Chat 0.4 - DeepSparse
14
+ This repo contains model files for [TinyLlama 1.1B Chat](https://huggingface.co/TinyLlama/TinyLlama-1.1B-Chat-v1.0) optimized for [DeepSparse](https://github.com/neuralmagic/deepsparse), a CPU inference runtime for sparse models.
15
+
16
+ This model was quantized and pruned with [SparseGPT](https://arxiv.org/abs/2301.00774), using [SparseML](https://github.com/neuralmagic/sparseml).
17
+
18
+ ## Inference
19
+ Install [DeepSparse LLM](https://github.com/neuralmagic/deepsparse) for fast inference on CPUs:
20
+ ```bash
21
+ pip install deepsparse-nightly[llm]
22
+ ```
23
+ Run in a [Python pipeline](https://github.com/neuralmagic/deepsparse/blob/main/docs/llms/text-generation-pipeline.md):
24
+ ```python
25
+ from deepsparse import TextGeneration
26
+
27
+ prompt = "How to make banana bread?"
28
+ formatted_prompt = f"<|im_start|>user\n{prompt}<|im_end|>\n<|im_start|>assistant\n"
29
+
30
+ model = TextGeneration(model="hf:neuralmagic/TinyLlama-1.1B-Chat-v0.4-pruned50-quant-ds")
31
+ print(model(formatted_prompt, max_new_tokens=500).generations[0].text)
32
+
33
+ """
34
+
35
+
36
+ """
37
+ ```
38
+ ## Prompt template
39
+
40
+ ```
41
+ <|im_start|>user\n
42
+ {prompt}<|im_end|>\n
43
+ <|im_start|>assistant\n
44
+
45
+ ```
46
+ ## Sparsification
47
+ For details on how this model was sparsified, see the `recipe.yaml` in this repo and follow the instructions below.
48
+
49
+ ```bash
50
+ git clone https://github.com/neuralmagic/sparseml
51
+ pip install -e "sparseml[transformers]"
52
+ python sparseml/src/sparseml/transformers/sparsification/obcq/obcq.py TinyLlama/TinyLlama-1.1B-Chat-v1.0 open_platypus --precision float16 --recipe recipe.yaml --save True
53
+ python sparseml/src/sparseml/transformers/sparsification/obcq/export.py --task text-generation --model_path obcq_deployment
54
+ cp deployment/model.onnx deployment/model-orig.onnx
55
+ ```
56
+ Run this kv-cache injection to speed up the model at inference by caching the Key and Value states:
57
+ ```python
58
+ import os
59
+ import onnx
60
+ from sparseml.exporters.kv_cache_injector import KeyValueCacheInjector
61
+ input_file = "deployment/model-orig.onnx"
62
+ output_file = "deployment/model.onnx"
63
+ model = onnx.load(input_file, load_external_data=False)
64
+ model = KeyValueCacheInjector(model_path=os.path.dirname(input_file)).apply(model)
65
+ onnx.save(model, output_file)
66
+ print(f"Modified model saved to: {output_file}")
67
+ ```
68
+ Follow the instructions on our [One Shot With SparseML](https://github.com/neuralmagic/sparseml/tree/main/src/sparseml/transformers/sparsification/obcq) page for a step-by-step guide for performing one-shot quantization of large language models.
69
+ ## Slack
70
+
71
+ For further support, and discussions on these models and AI in general, join [Neural Magic's Slack Community](https://join.slack.com/t/discuss-neuralmagic/shared_invite/zt-q1a1cnvo-YBoICSIw3L1dmQpjBeDurQ)