This model is pretrained on a collection of ZX-Spectrum images from zxart.ee
It generates images like this:
Usage example:
from diffusers import DiffusionPipeline
import torch
PROMPT = "Cute cat"
SEED = 123
STEPS = 20
pipe = DiffusionPipeline.from_pretrained("shadowlamer/sd-zxspectrum-model-256",
safety_checker=None, requires_safety_checker=False)
generator = torch.Generator("cpu").manual_seed(SEED)
image = pipe(PROMPT,
height=192,
width=256,
num_inference_steps=STEPS,
generator=generator,
).images[0]
image.save("result.png")
- Downloads last month
- 35
Inference Providers
NEW
This model is not currently available via any of the supported Inference Providers.