DeepBird commited on
Commit
3e27677
·
1 Parent(s): e73dede

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +16 -0
README.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - pytorch
5
+ - diffusers
6
+ - unconditional-image-generation
7
+ - diffusion-model-class
8
+ ---
9
+ # 这个模型用于生成蝴蝶图像
10
+
11
+ '''python
12
+ from diffusers import DDPMPipeline
13
+ pipeline = DDPMPipeline.from_pretrained('DeepBird/my_custom_ddpm_train')
14
+ image = pipeline().images[0]
15
+ image
16
+ '''