hsuwill000 commited on
Commit
9fb2286
·
verified ·
1 Parent(s): 2b54100

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: Kouki79/Realistic_Vision6_LCM
3
+ tags:
4
+ - openvino
5
+ - openvino-export
6
+ ---
7
+
8
+ This model was converted to OpenVINO from [`Kouki79/Realistic_Vision6_LCM`](https://huggingface.co/Kouki79/Realistic_Vision6_LCM) 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/Realistic_Vision6_LCM-openvino"
23
+ model = OVStableDiffusionPipeline.from_pretrained(model_id)
24
+ ```