revathin / README.md
indiakingarun's picture
Add generated example
9d572d2 verified
|
raw
history blame
1.78 kB
metadata
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
language:
  - en
tags:
  - flux
  - diffusers
  - lora
  - replicate
base_model: black-forest-labs/FLUX.1-dev
pipeline_tag: text-to-image
instance_prompt: REVATHIN
widget:
  - text: >-
      sleek and intriguing poster for the thriller movie Revathi, featuring
      REVATHIN as a stylish and mysterious Indian girl in her 20s, REVATHIN,
      dressed in a black leather jacket and ankle boots, stands in a dimly lit
      alley, her piercing gaze directed toward the camera, and her hair tied in
      a high ponytail, The background showcases neon lights, shadows of
      pursuers, and rain-soaked streets, creating a suspenseful and edgy
      atmosphere, The title Revathi is displayed in bold, glowing red letters
      with sharp edges, emphasizing the intense and modern tone of the film
    output:
      url: images/example_ijm7rfj2h.png

Revathin

Trained on Replicate using:

https://replicate.com/ostris/flux-dev-lora-trainer/train

Trigger words

You should use REVATHIN to trigger the image generation.

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.float16).to('cuda')
pipeline.load_lora_weights('indiakingarun/revathin', weight_name='lora.safetensors')
image = pipeline('your prompt').images[0]

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