Views
No views yet
mixqwerpoi The bright and clean kitchen area. The walls are finished with white paint, and the ceiling is also neatly finished with white paint. The floor is finished with light wood in a herringbone pattern, further emphasizing the bright feel of the entire space.The main color is white, silver (from the appliances and fixtures) is used as a secondary color, and warm wood tones are utilized as an accent color. White makes the space look wide and clean, silver adds a sleek modern touch, and the wood elements add warmth and naturalness. White cabinetry lines the kitchen, offering a clean and modern feel. A built-in microwave and dishwasher keep the space tidy, and a sleek faucet is installed beneath a window fitted with silver blinds. A white coffee machine sits on the counter, accompanied by wooden cutting boards that add a natural accent. Overall, it shows a minimal and sophisticated style. A bright, clean, and comfortable atmosphere is felt throughout the kitchen.3.00.025FlowMatchEulerDiscreteScheduler421024x1024, 1024x896, 1280x7681import torch
2from diffusers import DiffusionPipeline
3
4model_id = 'stabilityai/stable-diffusion-3.5-large'
5adapter_id = 'daehuncho/mini-mix-lora-very-small-4'
6pipeline = DiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.bfloat16) # loading directly in bf16
7pipeline.load_lora_weights(adapter_id)
8
9prompt = "mixqwerpoi The bright and clean kitchen area. The walls are finished with white paint, and the ceiling is also neatly finished with white paint. The floor is finished with light wood in a herringbone pattern, further emphasizing the bright feel of the entire space.The main color is white, silver (from the appliances and fixtures) is used as a secondary color, and warm wood tones are utilized as an accent color. White makes the space look wide and clean, silver adds a sleek modern touch, and the wood elements add warmth and naturalness. White cabinetry lines the kitchen, offering a clean and modern feel. A built-in microwave and dishwasher keep the space tidy, and a sleek faucet is installed beneath a window fitted with silver blinds. A white coffee machine sits on the counter, accompanied by wooden cutting boards that add a natural accent. Overall, it shows a minimal and sophisticated style. A bright, clean, and comfortable atmosphere is felt throughout the kitchen."
10negative_prompt = 'blurry, cropped, ugly'
11
12## Optional: quantise the model to save on vram.
13## Note: The model was quantised during training, and so it is recommended to do the same during inference time.
14from optimum.quanto import quantize, freeze, qint8
15quantize(pipeline.transformer, weights=qint8)
16freeze(pipeline.transformer)
17
18pipeline.to('cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu') # the pipeline is already in its target precision level
19image = pipeline(
20 prompt=prompt,
21 negative_prompt=negative_prompt,
22 num_inference_steps=25,
23 generator=torch.Generator(device='cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu').manual_seed(42),
24 width=1024,
25 height=1024,
26 guidance_scale=3.0,
27 skip_guidance_layers=[7, 8, 9],
28).images[0]
29image.save("output.png", format="PNG")