Views
No views yet

In a world where colors have flavor, and sounds have texture, The senses intertwine to create a sensory rapture. Welcome to “Synesthesia”- where the ordinary is extraordinary, And art takes on a meaning that’s truly visionary! :Rainbowpink:
1from diffusers import StableDiffusionPipeline
2import torch
3
4model_id = "Guizmus/SDArt_synesthesia"
5pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
6pipe = pipe.to("cuda")
7
8prompt = "SDArt minh"
9image = pipe(prompt).images[0]
10
11image.save("./SDArt.png")