Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: xyn-ai/EimisAnimeDiffusion_1.0v
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
license: creativeml-openrail-m
|
6 |
+
tags:
|
7 |
+
- stable-diffusion
|
8 |
+
- text-to-image
|
9 |
+
- image-to-image
|
10 |
+
- diffusers
|
11 |
+
- openvino
|
12 |
+
- openvino-export
|
13 |
+
thumbnail: https://imgur.com/6ztDBPR.png
|
14 |
+
inference: true
|
15 |
+
duplicated_from: eimiss/EimisAnimeDiffusion_1.0v
|
16 |
+
---
|
17 |
+
|
18 |
+
This model was converted to OpenVINO from [`xyn-ai/EimisAnimeDiffusion_1.0v`](https://huggingface.co/xyn-ai/EimisAnimeDiffusion_1.0v) using [optimum-intel](https://github.com/huggingface/optimum-intel)
|
19 |
+
via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
|
20 |
+
|
21 |
+
First make sure you have optimum-intel installed:
|
22 |
+
|
23 |
+
```bash
|
24 |
+
pip install optimum[openvino]
|
25 |
+
```
|
26 |
+
|
27 |
+
To load your model you can do as follows:
|
28 |
+
|
29 |
+
```python
|
30 |
+
from optimum.intel import OVStableDiffusionPipeline
|
31 |
+
|
32 |
+
model_id = "HelloSun/EimisAnimeDiffusion_1.0v-openvino"
|
33 |
+
model = OVStableDiffusionPipeline.from_pretrained(model_id)
|
34 |
+
```
|