README.md 1.2 KB
Newer Older
Anton Lozhkov's avatar
Anton Lozhkov committed
1
2
## Training examples

anton-l's avatar
anton-l committed
3
### Unconditional Flowers  
Anton Lozhkov's avatar
Anton Lozhkov committed
4
5
6
7
8
9

The command to train a DDPM UNet model on the Oxford Flowers dataset:

```bash
python -m torch.distributed.launch \
  --nproc_per_node 4 \
anton-l's avatar
anton-l committed
10
  train_unconditional.py \
Anton Lozhkov's avatar
Anton Lozhkov committed
11
12
  --dataset="huggan/flowers-102-categories" \
  --resolution=64 \
Anton Lozhkov's avatar
Anton Lozhkov committed
13
  --output_dir="flowers-ddpm" \
Anton Lozhkov's avatar
Anton Lozhkov committed
14
15
16
17
18
19
20
21
  --batch_size=16 \
  --num_epochs=100 \
  --gradient_accumulation_steps=1 \
  --lr=1e-4 \
  --warmup_steps=500 \
  --mixed_precision=no
```

anton-l's avatar
anton-l committed
22
A full training run takes 2 hours on 4xV100 GPUs.
Anton Lozhkov's avatar
Anton Lozhkov committed
23
24
25
26

<img src="https://user-images.githubusercontent.com/26864830/173855866-5628989f-856b-4725-a944-d6c09490b2df.png" width="500" />


anton-l's avatar
anton-l committed
27
### Unconditional Pokemon 
Anton Lozhkov's avatar
Anton Lozhkov committed
28
29
30
31
32
33

The command to train a DDPM UNet model on the Pokemon dataset:

```bash
python -m torch.distributed.launch \
  --nproc_per_node 4 \
anton-l's avatar
anton-l committed
34
  train_unconditional.py \
Anton Lozhkov's avatar
Anton Lozhkov committed
35
36
  --dataset="huggan/pokemon" \
  --resolution=64 \
Anton Lozhkov's avatar
Anton Lozhkov committed
37
  --output_dir="pokemon-ddpm" \
Anton Lozhkov's avatar
Anton Lozhkov committed
38
39
40
41
42
43
44
45
  --batch_size=16 \
  --num_epochs=100 \
  --gradient_accumulation_steps=1 \
  --lr=1e-4 \
  --warmup_steps=500 \
  --mixed_precision=no
```

anton-l's avatar
anton-l committed
46
A full training run takes 2 hours on 4xV100 GPUs.
Anton Lozhkov's avatar
Anton Lozhkov committed
47
48

<img src="https://user-images.githubusercontent.com/26864830/173856733-4f117f8c-97bd-4f51-8002-56b488c96df9.png" width="500" />