This is a Dreamboothed Stable Diffusion model trained on 3 Style concepts.
The total dataset is made of 209 pictures, and the training has been done on runawayml 1.5 with 2500 steps and the new VAE.
The following tokens will add their corresponding concept :
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/Tardisfusion"
5pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
6pipe = pipe.to("cuda")
7
8prompt = "a bedroom, Classic Tardis style"
9image = pipe(prompt).images[0]
10
11image.save("./TARDIS Style.png")