Skip to content

Deep Generative Diffusion Model for Pokemon Generation based on Denoising Probablistic Model (DDPM).

License

Notifications You must be signed in to change notification settings

shrebox/Pokemon-Diffusion

 
 

Repository files navigation

Pokemon Diffusion

Generated Pokemons: Open In Colab

Repository for the practical project to the Deep Generative Diffusion Models Seminar at Saarland University.

We use the dataset from pokemon-gan by Zhenye Na.

Rules ⚖️

Formalities 📝

  • The goal is to implement an end-to-end diffusion model on the pokemon-gan dataset.
  • You work alone or in groups of two.
  • Plagiarism will get you expelled from the seminar and potentially exmatriculated. However, you can discuss solutions with your fellow students and take inspiration from open-source implementations (see references).
  • You can also copy&pase small code snippets if they are clearly indicated.
  • We recommend Python + PyTorch for the implementation. If you want to use something else, please reach out to us.
  • Your code should run on Google Colab and normal desktop computers with minimal setup effort.
  • We will invite each team to explain their code in an individual meeting. You (resp. both of you) should be able to explain the code in detail and justify design choices.
  • Submit your results via e-mail to Gerrit.

How to Pass 🎓

  • To pass, you need to provide a (in a reasonable sense) technically correct implementation of a forward and backward process. You will not be judged on the visual quality of the generated images.
  • In addition, you should generate animations (e.g., gifs) of the forward and backward process to illustrate what is going on during training and data generation (cf. one_step_forward() function).
  • Comment your code extensively and assign proper names to your functions, variables, and classes.
  • Set seeds to make your code deterministic and save the final weights.
  • You should also visually verify that the forward process ends in a standard normal distribution by providing a reasonable visualization (analogously to color_distribution_original_images.png).
  • We recommend following the denoising diffusion paradigm. When you want to use score-based or SDE methods, you can do so as well.
  • If you make very unconventional design choices, you will need to be able to justify them.
  • Do you see any problems with your implementations or room to improve? Explain in a short paragraph (can be part of the notebook).
  • You can use this notebook or use your code from scratch.

Notes on the Reference Implementation 💻

  • You will probably need to activate the GPU of Colab and use batched images when you want to be able to generate nice images (for passing, this is not necessary, though)
  • We use a simple linear schedular and batch size of 256.
  • We predict the original image and not the noise.
  • We use a Unet, inspired by The Annotated Diffusion Model.
  • We run at least for 1000 epochs.
  • The visual quality strongly depends on the complexity of the Unet. Do not worry if your generated images look more like blobs than actual Pokomen. For passing, a minimal Unet or Autoencoder is enough.
  • Of course, you can always test other (larger) datasets to play around with.

Bonus 🏆

For a bonus (0.3 on your final grade), you can extend the implementation in any creative way. Possibilities include:

  • Smart data augmentation, extending the data set, or pre-training
  • Conditioning (e.g. on the Pokemon type)
  • Testing different network architectures, schedulers, or time-embeddings and reporting the findings.
  • Using a latent diffusion approach instead of diffusion in the RGB/image space.

If you have any other idea you think is worth investigating: try it out!

References 📚

Preliminaries 💡

Diffusion 🧨

Pokemon 🐲

Files 📁

  • color_distribution_original_images.png: RGB value disribution of the trainings data
  • dataset_summary.png: Some (augmented) images from the trainings data
  • forward_animate.gif: Animation of an (incorrect) forward process.
  • forward_grid.png: Imagegrid of an (incorrect) forward process.
  • reverse_process_reference_epoch_X.gif: Examples of the reverse process of the reference implementation after X epochs
  • color_distribution_normal_reference.png: RGB value disribution of the trainings after the forward process

Dataset Summary

About

Deep Generative Diffusion Model for Pokemon Generation based on Denoising Probablistic Model (DDPM).

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 100.0%