CoolFace
Modelpublic

teyler/GoodLookingMan

sourceHugging Faceotherupdated 2y agoView on Hugging Face
0likes12downloads
README.md49 linesDownload Raw Back to root
1---2license: other3license_name: flux-1-dev-non-commercial-license4license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md5language:6- en7tags:8- flux9- diffusers10- lora11- replicate12base_model: black-forest-labs/FLUX.1-dev13pipeline_tag: text-to-image14instance_prompt: teyler15widget:16- text: teyler shirtless buff17  output:18    url: images/example_ii28w1x39.png19 20---21 22# Goodlookingman23 24Trained on Replicate using:25 26https://replicate.com/ostris/flux-dev-lora-trainer/train27 28 29## Trigger words30You should use `teyler` to trigger the image generation.31 32Free Unlimited Commercial Use33 34Example images here https://x.com/WonderHole66635 36 37## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)38 39```py40from diffusers import AutoPipelineForText2Image41import torch42 43pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')44pipeline.load_lora_weights('teyler/GoodLookingMan', weight_name='lora.safetensors')45image = pipeline('your prompt').images[0]46```47 48For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)49