hsuwill000 commited on
Commit
edfd127
·
verified ·
1 Parent(s): 70eef31

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Lykon/AbsoluteReality
3
+ language:
4
+ - en
5
+ license: other
6
+ tags:
7
+ - stable-diffusion
8
+ - stable-diffusion-diffusers
9
+ - text-to-image
10
+ - art
11
+ - artistic
12
+ - diffusers
13
+ - photography
14
+ - openvino
15
+ - nncf
16
+ - 8-bit
17
+ inference: false
18
+ ---
19
+
20
+ This model is a quantized version of [`Lykon/AbsoluteReality`](https://huggingface.co/Lykon/AbsoluteReality) and is converted to the OpenVINO format. This model was obtained via the [nncf-quantization](https://huggingface.co/spaces/echarlaix/nncf-quantization) space with [optimum-intel](https://github.com/huggingface/optimum-intel).
21
+
22
+ First make sure you have `optimum-intel` installed:
23
+
24
+ ```bash
25
+ pip install optimum[openvino]
26
+ ```
27
+
28
+ To load your model you can do as follows:
29
+
30
+ ```python
31
+ from optimum.intel import OVStableDiffusionPipeline
32
+
33
+ model_id = "hsuwill000/AbsoluteReality-openvino-8bit"
34
+ model = OVStableDiffusionPipeline.from_pretrained(model_id)
35
+ ```