Views
No views yet
neoncrypt style to invoke the concept.
", a lone astronaut exploring an abandoned lunar research station"

", an ancient wooden sailing ship trapped inside a frozen cavern"

", a deserted roadside diner surrounded by wheat fields beneath an approaching storm"
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/neoncryptstyle")
6image = pipe("<neoncrypt style>, a lone astronaut exploring an abandoned lunar research station", num_inference_steps=8, guidance_scale=0.0).images[0]
7image.save("output.png")