Flux LoRA Collections
Collection
Flux THE LoRA β’ 131 items β’ Updated β’ 33
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("prithivMLmods/Castor-Flux-Concept-Gta6-Character-Design")
prompt = "A dynamic duo portrait of Jason and Lucia in GTA 6 style, captured in a cinematic, low-angle shot. Jason, with his piercing blue eyes, dark brown beard, and silver chain necklace, stands confidently beside Lucia, whose fierce expression matches her sleek look. Lucias dark hair flows against her leather jacket, and her bold makeup contrasts with Jasons rugged features. Both wear matching silver earrings, reflecting the urban, street-smart vibe of the game. The background, a neon-lit cityscape, is slightly blurred to focus on the characters, giving a vibrant, edgy feel typical of GTA 6s gritty, high-energy world."
image = pipe(prompt).images[0]





The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.
prithivMLmods/Castor-Concept-Gta6-Character-Design
Image Processing Parameters
| Parameter | Value | Parameter | Value |
|---|---|---|---|
| LR Scheduler | constant | Noise Offset | 0.03 |
| Optimizer | AdamW | Multires Noise Discount | 0.1 |
| Network Dim | 64 | Multires Noise Iterations | 10 |
| Network Alpha | 32 | Repeat & Steps | 25 & 1.5K |
| Epoch | 14 | Save Every N Epochs | 1 |
Labeling: florence2-en(natural language & English)
Total Images Used for Training : 25+ [ Hi-RES ]
https://search.muz.li/
| Prompt |
|---|
| Closeup of Lucia stands atop a skyscraper, elegant and hot, cool detailing, the bustling city below illuminated by neon lights and the sounds of nightlife. Her dark hair billows in the wind, and her striking features are accentuated by the glow of the moonlight. Dressed in a sleek, stylish outfit, she gazes thoughtfully over the edge, her piercing gaze reflecting the determination and resilience that define her character. In one hand, she holds a small gadget, a symbol of her tech-savvy nature and resourcefulness in the vibrant chaos of the GTA 6 world. |
import torch
from pipelines import DiffusionPipeline
base_model = "black-forest-labs/FLUX.1-dev"
pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
lora_repo = "prithivMLmods/Castor-Concept-Gta6-Character-Design"
trigger_word = "Jason, Lucia, GTA 6" # Leave trigger_word blank if not used.
pipe.load_lora_weights(lora_repo)
device = torch.device("cuda")
pipe.to(device)
You should use Jason to trigger the image generation.
You should use Lucia to trigger the image generation.
You should use GTA 6 to trigger the image generation.
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
Base model
black-forest-labs/FLUX.1-dev