Update README.md
Browse files
README.md
CHANGED
@@ -54,6 +54,37 @@ print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
|
54 |
|
55 |
For more examples and possible optimizations, refer to the [OpenVINO Large Language Model Inference Guide](https://docs.openvino.ai/2024/learn-openvino/llm_inference_guide.html).
|
56 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
## Limitations
|
58 |
|
59 |
Check the original model card for [limitations](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.1#limitations).
|
|
|
54 |
|
55 |
For more examples and possible optimizations, refer to the [OpenVINO Large Language Model Inference Guide](https://docs.openvino.ai/2024/learn-openvino/llm_inference_guide.html).
|
56 |
|
57 |
+
# Running Model Inference with [OpenVINO GenAI](https://github.com/openvinotoolkit/openvino.genai)
|
58 |
+
|
59 |
+
1. Install packages required for using OpenVINO GenAI.
|
60 |
+
```
|
61 |
+
pip install openvino-genai huggingface_hub
|
62 |
+
```
|
63 |
+
|
64 |
+
2. Download model from HuggingFace Hub
|
65 |
+
|
66 |
+
```
|
67 |
+
import huggingface_hub as hf_hub
|
68 |
+
|
69 |
+
model_id = "OpenVINO/mistral-7b-instrcut-v0.1-int4-ov"
|
70 |
+
model_path = "mistral-7b-instrcut-v0.1-int4-ov"
|
71 |
+
|
72 |
+
hf_hub.snapshot_download(model_id, local_dir=model_path)
|
73 |
+
|
74 |
+
```
|
75 |
+
|
76 |
+
3. Run model inference:
|
77 |
+
|
78 |
+
```
|
79 |
+
import openvino_genai as ov_genai
|
80 |
+
|
81 |
+
device = "CPU"
|
82 |
+
pipe = ov_genai.LLMPipeline(model_path, device)
|
83 |
+
print(pipe.generate("What is OpenVINO?"))
|
84 |
+
```
|
85 |
+
|
86 |
+
More GenAI usage examples can be found in OpenVINO GenAI library [docs](https://github.com/openvinotoolkit/openvino.genai/blob/master/src/README.md) and [samples](https://github.com/openvinotoolkit/openvino.genai?tab=readme-ov-file#openvino-genai-samples)
|
87 |
+
|
88 |
## Limitations
|
89 |
|
90 |
Check the original model card for [limitations](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.1#limitations).
|