hsuwill000 commited on
Commit
429a700
·
verified ·
1 Parent(s): f2dbc55

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: iamanaiart/LCM-absolutereality
3
+ tags:
4
+ - openvino
5
+ - nncf
6
+ - 8-bit
7
+ ---
8
+
9
+ This model is a quantized version of [`iamanaiart/LCM-absolutereality`](https://huggingface.co/iamanaiart/LCM-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).
10
+
11
+ First make sure you have `optimum-intel` installed:
12
+
13
+ ```bash
14
+ pip install optimum[openvino]
15
+ ```
16
+
17
+ To load your model you can do as follows:
18
+
19
+ ```python
20
+ from optimum.intel import OVStableDiffusionPipeline
21
+
22
+ model_id = "hsuwill000/LCM-absolutereality-openvino-8bit"
23
+ model = OVStableDiffusionPipeline.from_pretrained(model_id)
24
+ ```