metadata
language:
- en
license: other
license_name: flux-1-dev-non-commercial-license
license_link: LICENSE.md
library_name: diffusers
pipeline_tag: text-to-image
tags:
- text-to-image
- image-generation
- shuttle
widget:
- text: >-
A high-resolution photograph of a female model posing for a Louis Vuitton
brand advertisement, featuring natural lighting effects, a consistent
style, balanced composition, rich details, harmonious colors, no visible
flaws, emotional expression, creativity, and uniqueness, with optimized
technical parameters, master-level lighting, master-level color, and
master-level styling.
output:
url: assets/t1.webp
- text: >-
A high-resolution photograph of a female model in a serene, natural
setting, with soft, warm lighting, and a minimalist aesthetic, showcasing
a elegant fragrance bottle and the model's effortless, emotive expression,
with impeccable styling, and a muted color palette, evoking a sense of
understated luxury and refinement.
output:
url: assets/t2.webp
instance_prompt: null
DarkIdol-flux-v1
1088 x 1920 (6 steps) | |
---|---|
A high-resolution photograph of a female model posing for a Louis Vuitton brand advertisement, featuring natural lighting effects, a consistent style, balanced composition, rich details, harmonious colors, no visible flaws, emotional expression, creativity, and uniqueness, with optimized technical parameters, master-level lighting, master-level color, and master-level styling. |
Inference code
from diffusers import FluxPipeline
import torch
import numpy as np
MAX_SEED = np.iinfo(np.int32).max
seed = random.randint(0, MAX_SEED)
generator = torch.Generator().manual_seed(seed)
pipeline = FluxPipeline.from_pretrained(
"aifeifei798/DarkIdol-flux-v1", torch_dtype=torch.bfloat16
).to("cuda")
image = pipeline(
prompt="A high-resolution photograph of a female model in a serene, natural setting, with soft, warm lighting, and a minimalist aesthetic, showcasing a elegant fragrance bottle and the model's effortless, emotive expression, with impeccable styling, and a muted color palette, evoking a sense of understated luxury and refinement.",
guidance_scale=0,
num_inference_steps=6,
height=1920,
width=1088,
max_sequence_length=512,
generator=generator,
).images[0]
image.save("DarkIdol.png")