Views
No views yet

It was a creature of un-mythical origins, imbued by the forest itself. Its body was sleek and agile, with fur the color of a moonless deep blue midnight sky and eyes that glowed like embers in the darkness. But what truly set it apart were the petals that bloomed from its back, opening and closing like a flower that only blossomed at night. The creature's habitat was the forest floor, where it moved with an effortless grace that defied the laws of physics. Its body seemed to flow like water over the tangled roots and fallen leaves, its every movement a thing of hypnotic beauty. It had a natural affinity for the plants around it, but not in the way that one might expect. Rather than using them for sustenance, the creature communed with them, drawing strength from the very life force that pulsed through their veins. And so it was that the creature of un-mythical origins, born from the very essence of the earth itself, came to be known by a name whispered on the lips of those who had glimpsed its rare presence - Nightshade.
1from diffusers import StableDiffusionPipeline
2import torch
3
4model_id = "Guizmus/SDArt_UnmythicalCreatures"
5pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
6pipe = pipe.to("cuda")
7
8prompt = "SDArt rolf"
9image = pipe(prompt).images[0]
10
11image.save("./SDArt.png")