ysn-rfd commited on
Commit
22670fb
1 Parent(s): e84ffb7

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
+ base_model: digiplay/Sweet-mix_v2.2_flat
3
+ license: other
4
+ tags:
5
+ - stable-diffusion
6
+ - stable-diffusion-diffusers
7
+ - text-to-image
8
+ - diffusers
9
+ - openvino
10
+ - openvino-export
11
+ inference: true
12
+ ---
13
+
14
+ This model was converted to OpenVINO from [`digiplay/Sweet-mix_v2.2_flat`](https://huggingface.co/digiplay/Sweet-mix_v2.2_flat) 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 OVStableDiffusionPipeline
27
+
28
+ model_id = "ysn-rfd/Sweet-mix_v2.2_flat-openvino"
29
+ model = OVStableDiffusionPipeline.from_pretrained(model_id)
30
+ ```