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.
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.
1from diffusers import StableDiffusionPipeline
2import torch
3
4model_id = "Guizmus/SDArt_Complete_Edition"
5pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
6pipe = pipe.to("cuda")
7
8prompt = "a working cat, wearing a suit, using a computer, technological background, tea cup, painting, Catstravaganza"
9image = pipe(prompt).images[0]
10
11image.save("./SDArt.png")