Views
No views yet
This building in Saudi Arabia is a fine example of traditional desert architecture, characterized by its use of locally available materials such as sun-dried mud bricks and plaster, which provide natural insulation against the harsh climate. The tower, likely a watchtower or a minaret, showcases simple yet functional design, with narrow windows for ventilation and strategic visibility. The walls are robust and thick, demonstrating an emphasis on defense and durability. The flat roofs and crenelated parapets suggest the original grandeur and practical purposes of the structure, providing protection and elevated viewpoints. The craftsmanship reflects a deep understanding of the environmental demands, effectively merging form with function.3.00.020None421024x10241{
2 "algo": "lokr",
3 "multiplier": 1,
4 "linear_dim": 15000,
5 "linear_alpha": 1.25,
6 "factor": 4,
7 "apply_preset": {
8 "target_module": [
9 "Attention",
10 "FeedForward"
11 ],
12 "module_algo_map": {
13 "Attention": {
14 "factor": 4
15 },
16 "FeedForward": {
17 "factor": 4
18 }
19 }
20 }
21}1import torch
2from diffusers import DiffusionPipeline
3from lycoris import create_lycoris_from_weights
4
5model_id = 'black-forest-labs/FLUX.1-dev'
6adapter_id = 'pytorch_lora_weights.safetensors' # you will have to download this manually
7lora_scale = 1.0
8wrapper, _ = create_lycoris_from_weights(lora_scale, adapter_id, pipeline.transformer)
9wrapper.merge_to()
10
11prompt = "This building in Saudi Arabia is a fine example of traditional desert architecture, characterized by its use of locally available materials such as sun-dried mud bricks and plaster, which provide natural insulation against the harsh climate. The tower, likely a watchtower or a minaret, showcases simple yet functional design, with narrow windows for ventilation and strategic visibility. The walls are robust and thick, demonstrating an emphasis on defense and durability. The flat roofs and crenelated parapets suggest the original grandeur and practical purposes of the structure, providing protection and elevated viewpoints. The craftsmanship reflects a deep understanding of the environmental demands, effectively merging form with function."
12
13pipeline.to('cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu')
14image = pipeline(
15 prompt=prompt,
16 num_inference_steps=20,
17 generator=torch.Generator(device='cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu').manual_seed(1641421826),
18 width=1024,
19 height=1024,
20 guidance_scale=3.0,
21).images[0]
22image.save("output.png", format="PNG")