Views
No views yet
zxc.| Author | Type | Base Model | License | Trigger Token |
|---|---|---|---|---|
| abbyrana | Text-to-Image (Diffusion) | Stable Diffusion v1.5 | CreativeML Open RAIL-M | zxc |

zxc as a solider
zxc in a bucket
zxc wearing a crown
zxc wearing a tuxedo
zxc wearing spiderman suit1from diffusers import StableDiffusionPipeline
2import torch
3from IPython.display import display
4
5pipe = StableDiffusionPipeline.from_pretrained(
6 "abbyrana/stable-diffusion-1-5-neco-arc-zxc",
7 torch_dtype=torch.float16
8).to("cuda")
9
10# Recommended: 512x512 resolution, 100 steps
11image = pipe(
12 "zxc in a bucket", # <- Your prompt
13 height=512,
14 width=512,
15 num_inference_steps=100
16).images[0]
17
18# Display inline
19display(image)
20
21# Save locally
22image.save("neco_arc.png")zxc inside a jar, anime stylezxc wearing a wizard hat, highly detailed1@misc{abbyrana2026necoarc,
2 title = {abbyrana/stable-diffusion-1-5-neco-arc-zxc},
3 author = {Abhijit Rana},
4 year = {2026},
5 howpublished = {\url{https://huggingface.co/abbyrana/stable-diffusion-1-5-neco-arc-zxc}},
6 note = {If you find this work valuable, your citation and support are appreciated}
7}