Disney-Style Portrait Generator

This model is fine-tuned on Disney-style images using Stable Diffusion. It generates Disney-style portraits from text prompts.

Usage

from diffusers import StableDiffusionPipeline
import torch

# Load the model
model = StableDiffusionPipeline.from_pretrained("Molkaatb/DisneyModel", torch_dtype=torch.float16).to("cuda")

# Generate an image
prompt = "A Disney-style portrait of a princess"
image = model(prompt).images[0]
image.save("disney_princess.png")
Downloads last month
4
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.