Views
No views yet
google/ddpm-celebahq-2561from diffusers import DDPMPipeline
2
3
4pipe = DDPMPipeline.from_pretrained(
5 "tenperformer/ddpm-butterfly-finetuned"
6)
7
8image = pipe(
9 num_inference_steps=40
10).images[0]
11
12image.show()
13Training Notes
14
15The model was trained with:
16
17Gradient accumulation
18Mixed precision training
19Periodic checkpoints
20Hugging Face Hub backup
21Limitations
22
23This is an experimental fine-tuned DDPM model.
24
25Outputs may contain artifacts due to:
26
27Small dataset size
28Limited training duration
29DDPM sampling randomness
30License
31
32MIT
33
34
35