|
--- |
|
tags: |
|
- text-to-image |
|
- flux |
|
- lora |
|
- diffusers |
|
- template:sd-lora |
|
- ai-toolkit |
|
widget: |
|
- text: VLRSTYLE, A dynamic scene featuring Neon, a futuristic runner, dashing through |
|
a desolate and arid landscape. The environment |
|
is dry and barren, with cracked earth stretching out under a hazy, oppressive |
|
sky. Sparse, leafless trees with gnarled branches cast long, eerie shadows. |
|
The air feels tense and still, amplifying the sense of urgency and stress. |
|
Neon, with her electric-blue streaks and glowing outfit, radiates energy as |
|
she sprints, leaving behind a faint trail of neon light. In the distance looms |
|
a foreboding silhouette of a towering figure, resembling a witch, adding an |
|
ominous sense of pursuit. The scene is bathed in muted earth tones, contrasting |
|
sharply with Neon's vibrant glow, creating a striking visual tension. |
|
output: |
|
url: samples/1733523203130__000001000_0.jpg |
|
- text: VLRSTYLE, A bright and cheerful beach scene featuring Jett and Sage from |
|
Valorant. They are lounging on comfortable, colorful deck chairs, enjoying |
|
the sunshine. Jett, with her signature white hair tied back, is wearing a |
|
casual summer outfit and sipping on a vibrant blue cocktail with a small umbrella. |
|
Sage, elegant as always, wears a light summer dress and holds a refreshing |
|
pink drink garnished with fruit. Behind them, tall, lush palm trees sway gently |
|
in the warm breeze, and the golden sand stretches to meet the sparkling turquoise |
|
sea. The sky is a clear, brilliant blue with a few fluffy white clouds, completing |
|
the perfect tropical vibe. Both characters are relaxed, smiling, and enjoying |
|
their day off in this serene paradise. |
|
output: |
|
url: samples/1733523315965__000001000_1.jpg |
|
- text: "VLRSTYLE, A breathtaking mountainous landscape in an East Asian style,\ |
|
\ with steep, mist-shrouded peaks rising into the vibrant hues of a sunset.\ |
|
\ The scene is painted in rich oranges, pinks, and purples as the sun dips\ |
|
\ low on the horizon, casting a warm glow over the landscape. In the foreground\ |
|
\ on the left, Sova stands tall and poised, gazing out over the serene view.\ |
|
\ His bow is slung across his back, and his posture exudes a calm, reflective\ |
|
\ strength. He wears his traditional outfit, accented by subtle details illuminated\ |
|
\ by the golden light. The foreground features delicate cherry blossoms and\ |
|
\ a winding stone path leading to the cliff\u2019s edge where Sova stands.\ |
|
\ Below, the landscape is dotted with traditional pagodas and winding rivers\ |
|
\ that weave through the lush greenery of the valleys. The scene captures\ |
|
\ a moment of tranquility and contemplation." |
|
output: |
|
url: samples/1733523493325__000001000_2.jpg |
|
- text: VLRSTYLE (using 30 steps ) |
|
output: |
|
url: samples/extern_out_4.png |
|
- text: VLRSTYLE, heaven, (using 30 steps) |
|
output: |
|
url: samples/extern_out_3.png |
|
- text: VLRSTYLE (using 20 steps) |
|
output: |
|
url: samples/extern_out_2.png |
|
- text: VLRSTYLE (using 20 steps) |
|
output: |
|
url: samples/extern_out_1.png |
|
base_model: black-forest-labs/FLUX.1-dev |
|
instance_prompt: VLRSTYLE |
|
license: other |
|
license_name: flux-1-dev-non-commercial-license |
|
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md |
|
--- |
|
|
|
# valorant-style-lora-flux1-dev |
|
Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit) |
|
<Gallery /> |
|
|
|
## Trigger words |
|
|
|
You should use `VLRSTYLE` to trigger the image generation. |
|
|
|
## Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc. |
|
|
|
Weights for this model are available in Safetensors format. |
|
|
|
[Download](/Coquelicots/valorant-style-lora-flux1-dev/tree/main) them in the Files & versions tab. |
|
|
|
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers) |
|
|
|
```py |
|
from diffusers import AutoPipelineForText2Image |
|
import torch |
|
|
|
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda') |
|
pipeline.load_lora_weights('Coquelicots/valorant-style-lora-flux1-dev', weight_name='valorant-style-lora-flux1-dev.safetensors') |
|
image = pipeline('VLRSTYLE, A dynamic scene featuring Neon, a futuristic runner, dashing through a desolate and arid landscape reminiscent of Kirikou's world. The environment is dry and barren, with cracked earth stretching out under a hazy, oppressive sky. Sparse, leafless trees with gnarled branches cast long, eerie shadows. The air feels tense and still, amplifying the sense of urgency and stress. Neon, with her electric-blue streaks and glowing outfit, radiates energy as she sprints, leaving behind a faint trail of neon light. In the distance looms a foreboding silhouette of a towering figure, resembling a witch, adding an ominous sense of pursuit. The scene is bathed in muted earth tones, contrasting sharply with Neon's vibrant glow, creating a striking visual tension.').images[0] |
|
image.save("my_image.png") |
|
``` |
|
|
|
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) |
|
|
|
|