metadata
tags:
- text-to-image
- flux
- lora
- diffusers
- template:sd-lora
widget:
- output:
url: 1.jpg
text: >-
Rumi,in gang style , behind the ocean , whith a whale in the space that he
talking with rumi ! use FRSCHIAN style
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: Mahmood Farshcian Paint Style
license: other
license_name: flux-1-dev-non-commercial-license
Mahmood Farshcian Paint Style
Use it On Replicate.

- Prompt
- Rumi,in gang style , behind the ocean , whith a whale in the space that he talking with rumi ! use FRSCHIAN style
Trigger words
You should use FRSCHIAN style to trigger the image generation.
Creating images using a diffusers
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('tarfandoon/farshchian_flux', weight_name='flux_lora.safetensors')
image = pipeline('Rumi,in gang style , behind the ocean , whith a whale in the space that he talking with rumi ! use FRSCHIAN style').images[0]