File size: 854 Bytes
006b85b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | ---
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.
|