DreamBooth_Doraemon / README.md
phanthang's picture
Upload folder using huggingface_hub
006b85b verified
---
license: creativeml-openrail-m
tags:
- stable-diffusion
- stable-diffusion-diffusers
- text-to-image
- diffusers
- dreambooth
- doraemon
base_model: runwayml/stable-diffusion-v1-5
inference: true
---
# DreamBooth Doraemon Model
This is a DreamBooth model trained on Doraemon images.
## Usage
```python
from diffusers import StableDiffusionPipeline
import torch
model_id = "your-username/DreamBooth_Doraemon_0617"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")
prompt = "a photo of doraemon in the park"
image = pipe(prompt).images[0]
image.save("doraemon.png")
```
## Training Info
- **Trained on:** Doraemon
- **Date:** 2026-03-11 (or 06-17 based on folder name)
- **Base Model:** Stable Diffusion v1.5 (Assumed)
## Disclaimer
This model is for creative and educational purposes.