How to use inuptia/bigass with Diffusers:
pip install -U diffusers transformers accelerate
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("inuptia/bigass") prompt = "B1g455 The image is a high-resolution photograph featuring a woman taking a mirror selfie in what appears to be a modern, minimalist bedroom. The subject is a light-skinned woman with a curvy physique, including a prominent, rounded buttocks and a flat stomach. She has long, dark hair pulled back in a high ponytail. She is topless, wearing only a very minimal thong bikini that accentuates her hips and buttocks. Her breasts are not visible in this pose. The woman is holding a smartphone with a pink case, capturing the reflection in the mirror.She has a tattoo on her left hip. Her makeup is subtle, with a focus on her eyes and lips." image = pipe(prompt).images[0]