CoolFace
Modelpublic

silverdagger/profile-pic-2

sourceHugging Faceotherupdated 2y agoView on Hugging Face
0likes4downloads
README.md39 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- lora11base_model: "black-forest-labs/FLUX.1-dev"12pipeline_tag: text-to-image13instance_prompt: JPROF14---15 16# Profile Pic 217 18Trained on Replicate using:19 20https://replicate.com/ostris/flux-dev-lora-trainer/train21 22 23## Trigger words24You should use `JPROF` to trigger the image generation.25 26 27## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)28 29```py30from diffusers import AutoPipelineForText2Image31import torch32 33pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')34pipeline.load_lora_weights('silverdagger/profile-pic-2', weight_name='lora.safetensors')35image = pipeline('your prompt').images[0]36```37 38For 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)39