HelloSun commited on
Commit
7f4a570
1 Parent(s): 7054662

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: emilianJR/AnyLORA
3
+ language:
4
+ - en
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 [`emilianJR/AnyLORA`](https://huggingface.co/emilianJR/AnyLORA) 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 = "HelloSun/AnyLORA-openvino"
31
+ model = OVStableDiffusionPipeline.from_pretrained(model_id)
32
+ ```