katuni4ka commited on
Commit
9e6c04d
1 Parent(s): 08027ef

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -2
README.md CHANGED
@@ -9,7 +9,7 @@ license: apache-2.0
9
 
10
  ## Description
11
 
12
- This is [neural-chat-7b-v3-3](https://huggingface.co/Intel/neural-chat-7b-v3-3) model converted to the [OpenVINO™ IR](https://docs.openvino.ai/2024/documentation/openvino-ir-format.html) (Intermediate Representation) format with weights compressed to int8 by [NNCF](https://github.com/openvinotoolkit/nncf).
13
 
14
  ## Compatibility
15
 
@@ -18,7 +18,7 @@ The provided OpenVINO™ IR model is compatible with:
18
  * OpenVINO version 2024.1.0 and higher
19
  * Optimum Intel 1.16.0 and higher
20
 
21
- ## Running Model Inference
22
 
23
  1. Install packages required for using [Optimum Intel](https://huggingface.co/docs/optimum/intel/index) integration with the OpenVINO backend:
24
 
@@ -45,6 +45,37 @@ The provided OpenVINO™ IR model is compatible with:
45
 
46
  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).
47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  ## Limitations
49
 
50
  Check the original model card for [limitations](https://huggingface.co/Intel/neural-chat-7b-v3-3#ethical-considerations-and-limitations).
 
9
 
10
  ## Description
11
 
12
+ This is [neural-chat-7b-v3-3](https://huggingface.co/Intel/neural-chat-7b-v3-3) model converted to the [OpenVINO™ IR](https://docs.openvino.ai/2024/documentation/openvino-ir-format.html) (Intermediate Representation) format.
13
 
14
  ## Compatibility
15
 
 
18
  * OpenVINO version 2024.1.0 and higher
19
  * Optimum Intel 1.16.0 and higher
20
 
21
+ ## Running Model Inference with [Optimum Intel](https://huggingface.co/docs/optimum/intel/index)
22
 
23
  1. Install packages required for using [Optimum Intel](https://huggingface.co/docs/optimum/intel/index) integration with the OpenVINO backend:
24
 
 
45
 
46
  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).
47
 
48
+ ## Running Model Inference with [OpenVINO GenAI](https://github.com/openvinotoolkit/openvino.genai)
49
+
50
+ 1. Install packages required for using OpenVINO GenAI.
51
+ ```
52
+ pip install openvino-genai huggingface_hub
53
+ ```
54
+
55
+ 2. Download model from HuggingFace Hub
56
+
57
+ ```
58
+ import huggingface_hub as hf_hub
59
+
60
+ model_id = "OpenVINO/neural-chat-7b-v3-3-fp16-ov"
61
+ model_path = "neural-chat-7b-v3-3-fp16-ov"
62
+
63
+ hf_hub.snapshot_download(model_id, local_dir=model_path)
64
+
65
+ ```
66
+
67
+ 3. Run model inference:
68
+
69
+ ```
70
+ import openvino_genai as ov_genai
71
+
72
+ device = "CPU"
73
+ pipe = ov_genai.LLMPipeline(model_path, device)
74
+ print(pipe.generate("What is OpenVINO?"))
75
+ ```
76
+
77
+ 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)
78
+
79
  ## Limitations
80
 
81
  Check the original model card for [limitations](https://huggingface.co/Intel/neural-chat-7b-v3-3#ethical-considerations-and-limitations).