marquesafonso commited on
Commit
7eea431
·
verified ·
1 Parent(s): 945456e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +27 -0
README.md ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: mit
4
+ base_model: numind/NuExtract-2.0-2B
5
+ pipeline_tag: image-text-to-text
6
+ tags:
7
+ - openvino
8
+ - openvino-export
9
+ ---
10
+
11
+ This model was converted to OpenVINO from [`numind/NuExtract-2.0-2B`](https://huggingface.co/numind/NuExtract-2.0-2B) using [optimum-intel](https://github.com/huggingface/optimum-intel)
12
+ via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
13
+
14
+ First make sure you have optimum-intel installed:
15
+
16
+ ```bash
17
+ pip install optimum[openvino]
18
+ ```
19
+
20
+ To load your model you can do as follows:
21
+
22
+ ```python
23
+ from optimum.intel import OVModelForVisualCausalLM
24
+
25
+ model_id = "marquesafonso/NuExtract-2.0-2B-openvino"
26
+ model = OVModelForVisualCausalLM.from_pretrained(model_id)
27
+ ```