File size: 1,709 Bytes
96d94aa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
base_model: Linaqruf/animagine-xl-3.0
language:
- en
license: other
license_name: faipl-1.0-sd
license_link: https://freedevproject.org/faipl-1.0-sd/
tags:
- text-to-image
- stable-diffusion
- safetensors
- stable-diffusion-xl
- openvino
- openvino-export
widget:
- text: 1girl, green hair, sweater, looking at viewer, upper body, beanie, outdoors,
    night, turtleneck, masterpiece, best quality
  parameter:
    negative_prompt: nsfw, lowres, bad anatomy, bad hands, text, error, missing fingers,
      extra digit, fewer digits, cropped, worst quality, low quality, normal quality,
      jpeg artifacts, signature, watermark, username, blurry, artist name
  example_title: 1girl
- text: 1boy, male focus, green hair, sweater, looking at viewer, upper body, beanie,
    outdoors, night, turtleneck, masterpiece, best quality
  parameter:
    negative_prompt: nsfw, lowres, bad anatomy, bad hands, text, error, missing fingers,
      extra digit, fewer digits, cropped, worst quality, low quality, normal quality,
      jpeg artifacts, signature, watermark, username, blurry, artist name
  example_title: 1boy
---

This model was converted to OpenVINO from [`Linaqruf/animagine-xl-3.0`](https://huggingface.co/Linaqruf/animagine-xl-3.0) using [optimum-intel](https://github.com/huggingface/optimum-intel)
via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.

First make sure you have optimum-intel installed:

```bash
pip install optimum[openvino]
```

To load your model you can do as follows:

```python
from optimum.intel import OVStableDiffusionXLPipeline

model_id = "yuyuyu09/animagine-xl-3.0-openvino"
model = OVStableDiffusionXLPipeline.from_pretrained(model_id)
```