How to use Jorgegriese/Edu2 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("Jorgegriese/Edu2") prompt = "ASCII\u0000\u0000\u0000Hyperrealism, uncut penis with Foreskin covering the entire penis, flaccid penis, Eduardo, Latino, guapo. Eduardo stands naked in a hotel room with sunlight. Eduardo has masculine natural eyebrows not manicured. The sun shinning brightly thru windows. Outside a small dove is sitting at the window sell. Looks like a real photograph." image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!