plane0654 commited on
Commit
a876f20
·
verified ·
1 Parent(s): d3e31ce

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Lykon/dreamshaper-8-lcm
3
+ language:
4
+ - en
5
+ license: creativeml-openrail-m
6
+ pipeline_tag: text-to-image
7
+ tags:
8
+ - stable-diffusion
9
+ - stable-diffusion-diffusers
10
+ - text-to-image
11
+ - art
12
+ - artistic
13
+ - diffusers
14
+ - anime
15
+ - dreamshaper
16
+ - lcm
17
+ - openvino
18
+ - openvino-export
19
+ duplicated_from: lykon/dreamshaper-8-lcm
20
+ ---
21
+
22
+ This model was converted to OpenVINO from [`Lykon/dreamshaper-8-lcm`](https://huggingface.co/Lykon/dreamshaper-8-lcm) using [optimum-intel](https://github.com/huggingface/optimum-intel)
23
+ via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
24
+
25
+ First make sure you have optimum-intel installed:
26
+
27
+ ```bash
28
+ pip install optimum[openvino]
29
+ ```
30
+
31
+ To load your model you can do as follows:
32
+
33
+ ```python
34
+ from optimum.intel import OVStableDiffusionPipeline
35
+
36
+ model_id = "plane0654/dreamshaper-8-lcm-openvino"
37
+ model = OVStableDiffusionPipeline.from_pretrained(model_id)
38
+ ```