MercuryNex commited on
Commit
96d8afe
·
verified ·
1 Parent(s): 205c5a4

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
+ license: other
3
+ language:
4
+ - en
5
+ library_name: diffusers
6
+ pipeline_tag: text-to-image
7
+ tags:
8
+ - text-to-image
9
+ - openvino
10
+ - openvino-export
11
+ base_model: MercuryNex/hyperlcm
12
+ ---
13
+
14
+ This model was converted to OpenVINO from [`MercuryNex/hyperlcm`](https://huggingface.co/MercuryNex/hyperlcm) 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 OVDiffusionPipeline
27
+
28
+ model_id = "MercuryNex/hyperlcm-openvino"
29
+ model = OVDiffusionPipeline.from_pretrained(model_id)
30
+ ```