This is a PyTorch-based tutorial for Diffusion Models.
# step1. create anaconda environment
conda create -n DiffusionModels python=3.8
# step2. then activate this environment
conda activate DiffusionModels
# step3. install pytorch
# if on MacOSX
pip install torch==1.13.1 torchvision==0.14.1 torchaudio==0.13.1
# if on Linux/Windows, CUDA 11.6
pip install torch==1.13.1+cu116 torchvision==0.14.1+cu116 torchaudio==0.13.1 --extra-index-url https://download.pytorch.org/whl/cu116
# if on Linux/Windows, CUDA 11.7
pip install torch==1.13.1+cu117 torchvision==0.14.1+cu117 torchaudio==0.13.1 --extra-index-url https://download.pytorch.org/whl/cu117
# if on Linux/Windows, CPU Only
pip install torch==1.13.1+cpu torchvision==0.14.1+cpu torchaudio==0.13.1 --extra-index-url https://download.pytorch.org/whl/cpu
# step4. install other packages
pip install diffusers
# step1. create anaconda environment
conda create -n DiffusionModels python=3.8
# step2. then activate this environment
conda activate DiffusionModels
# step3. using requirements.txt
pip install -r requirements.txt --extra-index-url https://download.pytorch.org/whl/cu117
models.pyis Neural Networks.train.py- function
train_vaeshows how to train AutoEncoderKL or AutoEncoderVQ. - function
make_conditionsshows how to make timesteps and condition for Diffusion. - function
train_diffusionshows how to train an Unet for Diffusion. - function
sampling_diffusionshows how to sample using a pretrained U-Net.
- function