Views
No views yet
network_dim=32, network_alpha=32, and the trigger phrase molly woman.1from diffusers import FluxPipeline
2import torch
3
4pipeline = FluxPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16)
5pipeline.load_lora_weights("JoneseyP/molly-flux-lora", weight_name="molly_flux_lora.safetensors")
6pipeline.to("cuda")
7
8image = pipeline("molly woman, close-up portrait, crimson red hair, sensual expression", num_inference_steps=28).images[0]
9image.save("molly_output.png")molly woman.