How to use Emuixom/Myself_Emi_V 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("Emuixom/Myself_Emi_V") prompt = "The image is a black and white portrait of a EMILIANO person with dark hair. The person is wearing a long-sleeved black hoodie with a graphic design on the front. The design appears to be a skull with sharp teeth and a chain around its neck. The hoodie is covering the person's mask face hide, with their left hand resting on their chin. The background is a plain white wall. The overall mood of the image is somber and contemplative." image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!