hsuwill000 commited on
Commit
362d6ed
·
verified ·
1 Parent(s): de740a5

Upload README.md with huggingface_hub

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