metadata
inference: true
language:
- en
tags:
- stable-diffusion
- text-to-image
license: creativeml-openrail-m
Stable Diffusion fine tuned on Waltz with Bashir screencaps
Use prompt: 'wltzwthbshr'
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.
You can also export the model to ONNX, MPS and/or FLAX/JAX.
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")