openvino-ci
commited on
Commit
•
eecd413
1
Parent(s):
1e3bd4e
Upload folder using huggingface_hub
Browse files
README.md
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
---
|
2 |
license: bigscience-bloom-rail-1.0
|
3 |
license_link: https://choosealicense.com/licenses/bigscience-bloom-rail-1.0/
|
|
|
4 |
---
|
5 |
# bloomz-3b-int4-ov
|
6 |
-
* Model creator: [
|
7 |
* Original model: [bloomz-3b](https://huggingface.co/bigscience/bloomz-3b)
|
8 |
|
9 |
## Description
|
@@ -27,7 +28,7 @@ The provided OpenVINO™ IR model is compatible with:
|
|
27 |
* OpenVINO version 2024.4.0 and higher
|
28 |
* Optimum Intel 1.20.0 and higher
|
29 |
|
30 |
-
## Running Model Inference
|
31 |
|
32 |
1. Install packages required for using [Optimum Intel](https://huggingface.co/docs/optimum/intel/index) integration with the OpenVINO backend:
|
33 |
|
@@ -54,37 +55,6 @@ print(text)
|
|
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/bloomz-3b-int4-ov"
|
70 |
-
model_path = "bloomz-3b-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?", max_length=200))
|
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 [original model card](https://huggingface.co/bigscience/bloomz-3b) for limitations.
|
|
|
1 |
---
|
2 |
license: bigscience-bloom-rail-1.0
|
3 |
license_link: https://choosealicense.com/licenses/bigscience-bloom-rail-1.0/
|
4 |
+
base_model: bigscience/bloomz-3b
|
5 |
---
|
6 |
# bloomz-3b-int4-ov
|
7 |
+
* Model creator: [bigscience](https://huggingface.co/bigscience)
|
8 |
* Original model: [bloomz-3b](https://huggingface.co/bigscience/bloomz-3b)
|
9 |
|
10 |
## Description
|
|
|
28 |
* OpenVINO version 2024.4.0 and higher
|
29 |
* Optimum Intel 1.20.0 and higher
|
30 |
|
31 |
+
## Running Model Inference
|
32 |
|
33 |
1. Install packages required for using [Optimum Intel](https://huggingface.co/docs/optimum/intel/index) integration with the OpenVINO backend:
|
34 |
|
|
|
55 |
|
56 |
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).
|
57 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
## Limitations
|
59 |
|
60 |
Check the original model card for [original model card](https://huggingface.co/bigscience/bloomz-3b) for limitations.
|