Views
No views yet
ANOMARCHIVE style to invoke the concept.
"A majestic snow leopard perched on a jagged obsidian cliff overlooking a glowing neon nebula valley, ANOMARCHIVE style"

"A sleek, chrome hover-car gliding down a rainy midnight street lined with towering holographic billboards, ANOMARCHIVE style"

"A blindfolded ballerina performing a gravity-defying leap amidst a swirl of floating gold shards and ink droplets, ANOMARCHIVE style"

"A maximalist Victorian library where the bookshelves are carved from living coral and the ceiling is a churning ocean, ANOMARCHIVE style"
1import torch
2from diffusers import Krea2Pipeline
3
4pipe = Krea2Pipeline.from_pretrained("krea/Krea-2-Turbo", torch_dtype=torch.bfloat16).to("cuda")
5pipe.load_lora_weights("IronBloodhound/anomarchive-style")
6image = pipe("A majestic snow leopard perched on a jagged obsidian cliff overlooking a glowing neon nebula valley, ANOMARCHIVE style", num_inference_steps=8, guidance_scale=0.0).images[0]
7image.save("output.png")