MacrossRamen commited on
Commit
e7f591e
·
verified ·
1 Parent(s): 3e6633c

Upload README.md with huggingface_hub

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