marquesafonso commited on
Commit
642a753
·
verified ·
1 Parent(s): f26df7b

Upload README.md with huggingface_hub

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