Update README.md
Browse files
README.md
CHANGED
|
@@ -15,33 +15,3 @@ inference:
|
|
| 15 |
|
| 16 |
Enhancing the aesthetic quality and stylistic range of images generated by the Qwen-Image model. This LoRA attempts to address the base model's inherent lack of aesthetic visual styles.
|
| 17 |
|
| 18 |
-
# art_lora-lora
|
| 19 |
-
|
| 20 |
-
Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit)
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
## Trigger words
|
| 25 |
-
|
| 26 |
-
No trigger words defined.
|
| 27 |
-
|
| 28 |
-
## Download model and use it with ComfyUI, SD WEBUI Forge, SD.Next, Invoke AI, etc.
|
| 29 |
-
|
| 30 |
-
Weights for this model are available in Safetensors format.
|
| 31 |
-
|
| 32 |
-
[Download](bunnycore/art_lora-lora/tree/main) them in the Files & versions tab.
|
| 33 |
-
|
| 34 |
-
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
| 35 |
-
|
| 36 |
-
```py
|
| 37 |
-
from diffusers import AutoPipelineForText2Image
|
| 38 |
-
import torch
|
| 39 |
-
|
| 40 |
-
pipeline = AutoPipelineForText2Image.from_pretrained('Qwen/Qwen-Image', torch_dtype=torch.bfloat16).to('cuda')
|
| 41 |
-
pipeline.load_lora_weights('bunnycore/art_lora-lora', weight_name='art_lora_000001000.safetensors')
|
| 42 |
-
image = pipeline('a beautiful landscape').images[0]
|
| 43 |
-
image.save("my_image.png")
|
| 44 |
-
```
|
| 45 |
-
|
| 46 |
-
For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)
|
| 47 |
-
|
|
|
|
| 15 |
|
| 16 |
Enhancing the aesthetic quality and stylistic range of images generated by the Qwen-Image model. This LoRA attempts to address the base model's inherent lack of aesthetic visual styles.
|
| 17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|