echarlaix HF Staff commited on
Commit
3fb62dc
·
verified ·
1 Parent(s): 21e692f

Upload README.md with huggingface_hub

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