Views
No views yet

vegetawiro to trigger the image generation.1from diffusers import FluxPipeline
2import torch
3
4pipeline = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
5pipeline.load_lora_weights('WiroAI/Vegeta-Dragon-Ball-Z-Flux-LoRA', weight_name='vegeta_flux_lora.safetensors')
6image = pipeline('vegetawiro, A muscular Saiyan warrior with spiky black hair and a sharp widow’s peak, wearing blue battle armor with white gloves and boots. His arms are crossed, and he smirks confidently while a golden energy aura crackles around him.').images[0]
7image.save("output.png")