Diffusers How to use Gemneye/UnFlux 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("Gemneye/UnFlux")
prompt = "Ultra high-resolution close-up portrait of a man, full face in frame, hyperrealistic skin texture with microscopic facial details. Visible pores, subtle microveins, fine skin imperfections and natural tone variation. Sharp and vibrant eyes with detailed irises, realistic eyelashes and eyebrows. Balanced lighting with minimal gloss on nose and forehead, avoiding oily appearance. Realistic subsurface scattering, soft shadows, 4K, 8K, photorealism, cinematic quality, super resolution"
image = pipe(prompt).images[0]