samabogbog commited on
Commit
1faa0a5
·
verified ·
1 Parent(s): e780ff9

Upload README.md with huggingface_hub

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