Brutalism makes for some cool sci-fi illustrations and settings, but places that use that style generally aren't somewhere I'd actually want to live. This LoRA is about reclaiming those ugly places from the ugly governments that built them, and turning them into something welcoming and free. Optionally use "reclaimed brutalism" as a trigger word if you're looking for a heavily brutalist style. For more architectural variety, omit it.
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
5pipeline.load_lora_weights('e-n-v-y/envy-reclaimed-brutalism-xl-01', weight_name='EnvyReclaimedBrutalismXL01.safetensors')
6image = pipeline('reclaimed brutalism, colorful, well-lit interior, in a Homely Golden wheat field at dusk').images[0]
For more details, including weighting, merging and fusing LoRAs, check the
documentation on loading LoRAs in diffusers