|
--- |
|
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) |
|
``` |
|
|