Downloads · 30 days
161
0% of all-time downloads
Purz/face-projection
face-projection is a text-to-image model from Purz. Use it when you need an image from a text prompt. It is set up for diffusers. The card lists the license as other.
Downloads · 30 days
161
0% of all-time downloads
All-time downloads
53.5K
Public
Repo size
39.8 MB
Likes
8
Public
Click a slice to open those files.
.safetensors39.8 MB · 100%
From the Hugging Face model README
You should use f4c3_p40j3ct10n to trigger the image generation.
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
from diffusers import AutoPipelineForText2Image
import torch
device = "cuda" if torch.cuda.is_available() else "cpu"
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
pipeline.load_lora_weights('Purz/face-projection', weight_name='purz-f4c3_p40j3ct10n.safetensors')
image = pipeline('f4c3_p40j3ct10n, a projection of the word "HUMAN" on a high tech android's head').images[0]
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers