--- inference: true language: - en tags: - stable-diffusion - text-to-image license: creativeml-openrail-m --- # Stable Diffusion v1.5 fine tuned on Waltz with Bashir screencaps Use prompt: 'wltzwthbshr' [Waltz with Bashir on IMDB](https://www.imdb.com/title/tt1185616) ### Output Samples: Settings used: "wltzwthbshr SUBJECT", euler a, 35 steps, cfg 7, 1024x1024, high res fix on, sd-vae-ft-mse-original (AUTOMATIC1111 webui) ### 🧨 Diffusers This model can be used just like any other Stable Diffusion model. For more information, please have a look at [Stable diffusion Pipelines](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion). You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX](). ```python from diffusers import StableDiffusionPipeline import torch model_id = "mikesmodels/Waltz_with_Bashir_Diffusion" pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16) pipe = pipe.to("cuda") prompt = "wltzwthbshr dwayne johnson" image = pipe(prompt).images[0] image.save("./dwayne_johnson.png") ```