Skip to content

bkhanal-11/generative-deep-learning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Infusing the Diffusion Models

This repo is created to capture fundamental concepts and algorithms responsible towards popular generative and difussion models like Stable Diffusion, ChatGPT, etc.

The following figure represents a rough roadmap for getting there.

Roadmap

Starting from basic Neural Network, we would eventually want to reach to VQGAN + CLIP which can be considered as the basic Diffusion model. As depicted in the figure, in order to understand diffusion model, we want to start from basic Neural Network. For understanding diffusion models, one requires the prior knowledge on three sub fields of Deep Learning: Convolutional Neural Networks (CNNs), Natural Language Processing (NLP) and Generative Adversarial Networks (GAN).

I have created separate repositories for basic Neural Network, CNN and NLP if you want to give a look. This repo contains implementation and descriptions of generative models.

[1] Neural Network from Scratch

[2] Natural Language Processing

[3] Convolutional Neural Networks

[4] Transformers

[5] Machine Learning Algorithms