anokimchen commited on
Commit
6a144fd
1 Parent(s): 9cb52ea

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: segmind/tiny-sd
3
+ datasets:
4
+ - recastai/LAION-art-EN-improved-captions
5
+ license: creativeml-openrail-m
6
+ tags:
7
+ - stable-diffusion
8
+ - stable-diffusion-diffusers
9
+ - text-to-image
10
+ - diffusers
11
+ - openvino
12
+ - openvino-export
13
+ inference: true
14
+ ---
15
+
16
+ This model was converted to OpenVINO from [`segmind/tiny-sd`](https://huggingface.co/segmind/tiny-sd) using [optimum-intel](https://github.com/huggingface/optimum-intel)
17
+ via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
18
+
19
+ First make sure you have optimum-intel installed:
20
+
21
+ ```bash
22
+ pip install optimum[openvino]
23
+ ```
24
+
25
+ To load your model you can do as follows:
26
+
27
+ ```python
28
+ from optimum.intel import OVStableDiffusionPipeline
29
+
30
+ model_id = "anokimchen/tiny-sd-openvino"
31
+ model = OVStableDiffusionPipeline.from_pretrained(model_id)
32
+ ```