Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
widget:
|
| 3 |
+
- text: >-
|
| 4 |
+
gta6style, a cinematic close-up of a young woman with a determined yet emotional expression, her face illuminated by a warm, dim light. She has subtle freckles, hoop earrings, and a loose braid resting on her shoulder. The background is softly blurred, hinting at a modest room with a glowing bedside lamp, adding depth and a sense of intimacy to the scene.
|
| 5 |
+
[trigger]
|
| 6 |
+
output:
|
| 7 |
+
url: samples/3.jpg
|
| 8 |
+
base_model:
|
| 9 |
+
- black-forest-labs/FLUX.1-dev
|
| 10 |
+
pipeline_tag: text-to-image
|
| 11 |
+
tags:
|
| 12 |
+
- flux
|
| 13 |
+
- text-to-image
|
| 14 |
+
- lora
|
| 15 |
+
- ai-toolkit
|
| 16 |
+
license: other
|
| 17 |
+
license_name: flux-1-dev-non-commercial-license
|
| 18 |
+
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
# GTA6-style-flux-lora
|
| 22 |
+
|
| 23 |
+
<Gallery />
|
| 24 |
+
|
| 25 |
+
## Trigger Word
|
| 26 |
+
'gta6style' is the trigger word.
|
| 27 |
+
|
| 28 |
+
This LoRA is trained for anyone who like GTA6 style. You can visit our website to check other models https://wiro.ai/
|
| 29 |
+
|
| 30 |
+
## Usage
|
| 31 |
+
|
| 32 |
+
```py
|
| 33 |
+
from diffusers import FluxPipeline
|
| 34 |
+
import torch
|
| 35 |
+
|
| 36 |
+
pipe = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
|
| 37 |
+
pipe.load_lora_weights('WiroAI/GTA6-style-flux-lora', weight_name='gta6style.safetensors')
|
| 38 |
+
image = pipe('[trigger], a cinematic close-up of a young woman with a determined yet emotional expression, her face illuminated by a warm, dim light. She has subtle freckles, hoop earrings, and a loose braid resting on her shoulder. The background is softly blurred, hinting at a modest room with a glowing bedside lamp, adding depth and a sense of intimacy to the scene.').images[0]
|
| 39 |
+
image.save("gta_style_image.png")
|
| 40 |
+
```
|