FLUX.1-Panorama-Lora
Collection
FLUX.1 LoRAs for generating high-quality panoramic images
•
4 items
•
Updated
•
1
FLUX.1 Panorama [dev] LoRA
is a LoRA model for FLUX.1 [dev], designed to generate high-quality panoramic images from textual description, with a focus on realistic interior design scenes.
import torch
from diffusers.pipelines.flux.pipeline_flux import FluxPipeline
pipe = FluxPipeline.from_pretrained(
"black-forest-labs/FLUX.1-dev",
torch_dtype=torch.bfloat16,
)
pipe.load_lora_weights("manycore-research/FLUX.1-Panorama-dev-lora")
pipe = pipe.to("cuda")
prompt = "A modern bedroom features a low platform bed with a grey upholstered headboard in the center, light oak flooring, two white nightstands with silver lamps, a large window with sheer white curtains on the left, a built-in wooden wardrobe on the right, and a textured beige rug beneath the bed."
image = pipe(
prompt=prompt,
height=1920,
width=960,
guidance_scale=4.0,
num_inference_steps=20,
generator=torch.Generator(device="cpu").manual_seed(42),
).images[0]
image.save("output.png")
The model falls under the FLUX.1-dev Non-Commercial License.
Base model
black-forest-labs/FLUX.1-dev