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: RTMI
library_name: diffusers
inference:
parameters:
width: 1536
height: 768
widget:
- text: >-
RTMI style. Guybrush threepwood, a tall man with blonde hair, wearing a
blue pirate coat with gold accents. He has a white shirt underneath, a
belt with a gold buckle, and dark pants. His expression is thoughtful, and
he has a slight stubble on his face, adding to his adventurous appearance.
Guybrush is programming with many computers. Cyberpunk style.
example_title: Guybrush programmer
output:
url: samples/guybrush-programmer.png
- text: >-
RTMI style. An empty interior scene just inside the entrance of a towering
building constructed and inhabited by cockroaches. The perspective is
distorted and cartoonish, with the camera positioned as if you're standing
just past the grand, slightly arched door that leads into the building.
The interior is a labyrinth of narrow, winding corridors that twist and
turn unpredictably, with passageways leading up, down, and in all
directions, creating a sense of disorientation. The ceiling, walls, and
floors are all pristine white, with the floor retroilluminated, casting a
soft glow upwards. The hallways have a sleek, futuristic appearance, but
are still dimly lit, with shadows that accentuate the strange angles of
the walls. The retro-style TVs embedded in the walls have bright orange
plastic casings, while the screens emit a soft, white light. The screens
are tilted at odd angles, flickering with static or displaying quirky,
old-school TV shows, adding a nostalgic glow to the cold environment. The
staircases are modern and minimalist, without handrails, their black steps
creating a stark contrast against the white surroundings. The stairs
spiral upward in erratic directions, some leading to higher floors, while
others abruptly end in dead ends. The stairways are crooked, with steps of
varying heights and widths, enhancing the building’s surreal, disjointed
atmosphere. The white walls are adorned with subtle, recessed cockroach
logos, creating an embossed effect that adds texture and detail to the
otherwise smooth surfaces. Additional doors are scattered throughout the
corridor, some leading to hidden rooms, while others open into completely
dark tunnels. The hallways also bifurcate in places, with some passages
leading into these pitch-black tunnels, creating a sense of mystery and
unease. The entire scene is bathed in a mix of dim lighting from the
ceiling, the soft glow from the floor, and the eerie light of the orange
TVs, creating a mysterious and slightly unsettling atmosphere.
example_title: Tv nest
output:
url: samples/tv-channel.png
Flux Lora Rtmi
Trained on Replicate using:
https://replicate.com/ostris/flux-dev-lora-trainer/train
Trigger words
You should use RTMI
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('lichorosario/flux-lora-rtmi', 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