echarlaix HF staff commited on
Commit
6949a4e
1 Parent(s): a18d0e4

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: echarlaix/LCM_Dreamshaper_v7-openvino
3
+ language:
4
+ - en
5
+ license: mit
6
+ pipeline_tag: text-to-image
7
+ tags:
8
+ - text-to-image
9
+ - openvino
10
+ - openvino
11
+ ---
12
+
13
+ This model is a quantized version of [`echarlaix/LCM_Dreamshaper_v7-openvino`](https://huggingface.co/echarlaix/LCM_Dreamshaper_v7-openvino) 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).
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 OVLatentConsistencyModelPipeline
25
+
26
+ model_id = "echarlaix/LCM_Dreamshaper_v7-openvino-8bit"
27
+ model = OVLatentConsistencyModelPipeline.from_pretrained(model_id)
28
+ ```