Edit model card

SDArt : Complete Edition (version based on 1.5)

Showcase

Model description

This is a model related to the community events on Stable Diffusion discord.

Each week multiple contests happen and challengers submit great art that I train on as individual models. The present model is a compilation of all those datasets, as well as some collected through a community project.

The total dataset is made of 742 pictures. It was trained on Stable diffusion 1.5 with the updated VAE. I used EveryDream to do the training, 100 total repeat per picture. The pictures were tagged using long prompts, and no specific trigger word is needed. The name of the contests themselves have been added to the caption and can act as styles (Synesthesia, Futuristic clothes, ...)

This model is also available here in a version trained on 2.1 as a base.

Trained themes

Download links

SafeTensors

Dataset

🧨 Diffusers

This model can be used just like any other Stable Diffusion model. For more information, please have a look at the Stable Diffusion.

You can also export the model to ONNX, MPS and/or FLAX/JAX.

from diffusers import StableDiffusionPipeline
import torch

model_id = "Guizmus/SDArt_Complete_Edition"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")

prompt = "a working cat, wearing a suit, using a computer, technological background, tea cup, painting, Catstravaganza"
image = pipe(prompt).images[0]

image.save("./SDArt.png")
Downloads last month
83