metadata
license: creativeml-openrail-m
tags:
- text-to-image
- dreambooth
- stable-diffusion
musecat_PPt_Model — Dreambooth Fine-tuned Stable Diffusion
Model by LK0608
This repository contains a Dreambooth-fine-tuned Stable Diffusion model trained on the musecat_PPt_Model concept.
Use the following instance_prompt to generate images of the trained subject:
→ a photo of a mscds cat
Train Your Own Concept
You can fine-tune Stable Diffusion on your own subject or style by using the official HuggingFace Dreambooth notebooks:
Dreambooth Training Notebook
https://colab.research.google.com/github/huggingface/notebooks/blob/main/diffusers/sd_dreambooth_training.ipynbInference Notebook
https://colab.research.google.com/github/huggingface/notebooks/blob/main/diffusers/sd_dreambooth_inference.ipynbPublic Dreambooth Concepts Space
https://huggingface.co/spaces/sd-dreambooth-library/stable-diffusion-dreambooth-concepts
Usage (Diffusers)
from diffusers import StableDiffusionPipeline
import torch
pipe = StableDiffusionPipeline.from_pretrained(
"your-username/musecat_PPt_Model",
torch_dtype=torch.float16
).to("cuda")
prompt = "a photo of a mscds cat wearing sunglasses, cinematic lighting"
image = pipe(prompt).images[0]
image.save("output.png")