hsuwill000 commited on
Commit
12bee5d
·
verified ·
1 Parent(s): 929154c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +31 -0
README.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: eienmojiki/AngelBreed-v4
3
+ language:
4
+ - en
5
+ license: creativeml-openrail-m
6
+ pipeline_tag: text-to-image
7
+ tags:
8
+ - stable-diffusion
9
+ - merge
10
+ - anime
11
+ - openvino
12
+ - nncf
13
+ - 8-bit
14
+ ---
15
+
16
+ This model is a quantized version of [`eienmojiki/AngelBreed-v4`](https://huggingface.co/eienmojiki/AngelBreed-v4) 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).
17
+
18
+ First make sure you have `optimum-intel` installed:
19
+
20
+ ```bash
21
+ pip install optimum[openvino]
22
+ ```
23
+
24
+ To load your model you can do as follows:
25
+
26
+ ```python
27
+ from optimum.intel import OVStableDiffusionPipeline
28
+
29
+ model_id = "hsuwill000/AngelBreed-v4-openvino-8bit"
30
+ model = OVStableDiffusionPipeline.from_pretrained(model_id)
31
+ ```