|
--- |
|
base_model: stabilityai/stable-diffusion-xl-base-1.0 |
|
library_name: diffusers |
|
license: creativeml-openrail-m |
|
inference: true |
|
tags: |
|
- stable-diffusion |
|
- stable-diffusion-diffusers |
|
- text-to-image |
|
- diffusers |
|
- diffusers-training |
|
- lora |
|
datasets: |
|
- gigant/oldbookillustrations |
|
--- |
|
|
|
<!-- This model card has been generated automatically according to the information the training script had access to. You |
|
should probably proofread and complete it, then remove this comment. --> |
|
|
|
|
|
# LoRA text2image fine-tuning - Oedon42/oldpainter-lora-xl |
|
These are LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0. The weights were fine-tuned on the gigant/oldbookillustrations dataset. You can find some example images in the following. |
|
|
|
|
|
|
|
|
|
## Intended uses & limitations |
|
|
|
#### How to use |
|
|
|
```python |
|
from diffusers import DiffusionPipeline |
|
|
|
pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0") |
|
pipe.load_lora_weights("Oedon42/oldpainter-lora-xl") |
|
|
|
prompt = "big white rose, details, 19th century, antiquity, reference book, color, Europe, frontispiece, 8k" |
|
image = pipe(prompt).images[0] |
|
``` |
|
## Model Preview |
|
|
|
<div style="display: flex; flex-wrap: wrap;"> |
|
<div style="flex: 90%; padding: 1px;"> |
|
<img src="./output.png" alt="Preview" style="width: 90%;"/> |
|
</div> |
|
</div> |
|
|
|
|
|
## Training details |
|
|
|
[TODO] |