test7-coat / README.md
seawolf2357's picture
Update README.md
6693985 verified
metadata
tags:
  - text-to-image
  - flux
  - lora
  - diffusers
  - template:sd-lora
  - ai-toolkit
widget:
  - text: >-
      a woman taking a selfie in a mirror while wearing a beige trench coat. She
      is standing in front of a wall with two frames attached to it, and there
      is a bag on the right side of the image. In the background, there are a
      few chairs and a table. [trigger]
    output:
      url: samples/1728204409892__000001000_0.jpg
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: trench coat
license: other
license_name: flux-1-dev-non-commercial-license
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md

test7-coat

Prompt
a woman taking a selfie in a mirror while wearing a beige trench coat. She is standing in front of a wall with two frames attached to it, and there is a bag on the right side of the image. In the background, there are a few chairs and a table. [trigger]

Trigger words

You should use trench coat to trigger the image generation.

Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.

Weights for this model are available in Safetensors format.

Download them in the Files & versions tab.

Use it with the 🧨 diffusers library

from diffusers import AutoPipelineForText2Image
import torch

pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('seawolf2357/test7-coat', weight_name='test7-coat.safetensors')
image = pipeline('a woman taking a selfie in a mirror while wearing a beige trench coat. She is standing in front of a wall with two frames attached to it, and there is a bag on the right side of the image. In the background, there are a few chairs and a table. [trigger]').images[0]
image.save("my_image.png")

For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers