musecat-ppt-model / README.md
Bobobob17134's picture
Update README.md
40c2a08 verified
|
raw
history blame
1.36 kB
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:


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")