tscstudios/v5mftn9kvbzxheppq9m77kiuuri2_fb92241f-30e4-4f96-9d14-eda8330ed7d8
08
V5Mftn9Kvbzxheppq9M77Kiuuri2_Fb92241F 30E4 4F96 9D14 Eda8330Ed7D8
<Gallery />
Trained on Replicate using:
https://replicate.com/ostris/flux-dev-lora-trainer/train
Trigger words
You should use TOK to trigger the image generation.
Use it with the 🧨 diffusers library
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('tscstudios/v5mftn9kvbzxheppq9m77kiuuri2_fb92241f-30e4-4f96-9d14-eda8330ed7d8', weight_name='lora.safetensors')
image = pipeline('your prompt').images[0]For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
