An open API service indexing awesome lists of open source software.

https://github.com/g4vrel/simple_ml

Simple implementation of ML papers
https://github.com/g4vrel/simple_ml

implementation implementation-of-research-paper papers pytorch

Last synced: 7 months ago
JSON representation

Simple implementation of ML papers

Awesome Lists containing this project

README

          

# simple_ml
Simple implementation of ML papers centered around generative models.

## Implemented papers
| Paper | Source | Code |
| --- | --- | --- |
| NICE: Non-linear Independent Components Estimation | [Arxiv](https://arxiv.org/abs/1410.8516) | [Code](./NICE) |
| Denoising Diffusion Probabilistic Models | [Arxiv](https://arxiv.org/abs/2006.11239) | [Code](https://github.com/g4vrel/DDPM) |
| Generative Adversarial Networks | [Arxiv](https://arxiv.org/abs/1406.2661) | [Code](./GAN) |
| Auto-Encoding Variational Bayes | [Arxiv](https://arxiv.org/abs/1312.6114) | [Code](./VAE) |
| Adversarial Autoencoders | [Arxiv](https://arxiv.org/abs/1511.05644) | [Code](https://github.com/g4vrel/AAE) |
| InfoGAN: Interpretable Representation Learning by Information Maximizing Generative Adversarial Net | [Arxiv](https://arxiv.org/abs/1606.03657) | [Code](./InfoGAN) |
| Wasserstein GAN | [Arxiv](https://arxiv.org/abs/1701.07875) | [Code](./WGAN) |
| Score-Based Generative Modeling through Stochastic Differential Equations | [Arxiv](https://arxiv.org/abs/2011.13456) | [Code](https://github.com/g4vrel/sde_ddpm) |
| Flow Matching for Generative Modeling | [Arxiv](https://arxiv.org/abs/2210.02747v2) | [Code](https://github.com/g4vrel/CFM) |