anokimchen commited on
Commit
6587f28
·
verified ·
1 Parent(s): 194e384

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +26 -0
README.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: stabilityai/sd-turbo
3
+ pipeline_tag: text-to-image
4
+ tags:
5
+ - openvino
6
+ - openvino-export
7
+ inference: false
8
+ ---
9
+
10
+ This model was converted to OpenVINO from [`stabilityai/sd-turbo`](https://huggingface.co/stabilityai/sd-turbo) using [optimum-intel](https://github.com/huggingface/optimum-intel)
11
+ via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
12
+
13
+ First make sure you have optimum-intel installed:
14
+
15
+ ```bash
16
+ pip install optimum[openvino]
17
+ ```
18
+
19
+ To load your model you can do as follows:
20
+
21
+ ```python
22
+ from optimum.intel import OVStableDiffusionPipeline
23
+
24
+ model_id = "anokimchen/sd-turbo-openvino"
25
+ model = OVStableDiffusionPipeline.from_pretrained(model_id)
26
+ ```