From 828db51fab6267809ed832d2b5da4c6ee43a3f3e Mon Sep 17 00:00:00 2001 From: petr-parker <92758453+petr-parker@users.noreply.github.com> Date: Tue, 26 Nov 2024 15:25:57 +0300 Subject: [PATCH 1/2] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f0dfbda..b37ce8a 100644 --- a/README.md +++ b/README.md @@ -25,11 +25,11 @@  -## Description +## 💡 Description This repository implements an educational project for the Bayesian Multimodeling course. It implements algorithms for sampling from various distributions, using the implicit reparameterization trick. -## Scope +## 🗃 Scope We plan to implement the following distributions in our library: - [x] Gaussian normal distribution (*) - [x] Dirichlet distribution (Beta distributions)(\*) @@ -44,11 +44,11 @@ We plan to implement the following distributions in our library: (\*\*\*) - this distribution is not very clear in implementation, its inclusion is questionable -## Stack +## 📚 Stack We plan to inherit from the torch.distribution.Distribution class, so we need to implement all the methods that are present in that class. -## Usage +## 👨💻 Usage In this example, we demonstrate the application of our library using a Variational Autoencoder (VAE) model, where the latent layer is modified by a normal distribution. ``` >>> import torch.distributions.implicit as irt @@ -66,7 +66,7 @@ In this example, we demonstrate the use of a mixture of distributions using our >>> outputs = Decoder(deviated) ``` -## Links +## 📬 Links - [LinkReview](https://github.com/intsystems/implitic-reparametrization-trick/blob/main/linkreview.md) - [Plan of project](https://github.com/intsystems/implitic-reparametrization-trick/blob/main/planning.md) - [BlogPost](blogpost/Blog_post_sketch.pdf) From a541d090f01132a82f1f3ec01fdf511ace3b05cc Mon Sep 17 00:00:00 2001 From: petr-parker <92758453+petr-parker@users.noreply.github.com> Date: Tue, 26 Nov 2024 15:32:57 +0300 Subject: [PATCH 2/2] Update README.md --- README.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b37ce8a..015455c 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,19 @@ -# Implicit Reparametrization Trick +