Views
No views yet
jenkov to invoke the concept.
"A futuristic neon-lit cyberpunk cityscape where a sleek jenkov robot wanders through rain-slicked streets under holographic advertisements."

"An ancient, overgrown jungle temple ruins where a mystical jenkov creature rests atop a mossy stone altar in a shaft of golden sunlight."

"A hyper-realistic macro shot of a miniature jenkov figurine placed on a crystalline salt flat under a swirling violet nebula sky."
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("lloydchristmas1231/jenkov")
6image = pipe("A futuristic neon-lit cyberpunk cityscape where a sleek jenkov robot wanders through rain-slicked streets under holographic advertisements.", num_inference_steps=8, guidance_scale=0.0).images[0]
7image.save("output.png")