Skip to content
/ I-VAE Public

The inversion variational autoencoder (I-VAE) implemented in PyTorch

Notifications You must be signed in to change notification settings

sisl/I-VAE

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

I-VAE

PyTorch implementation of the inversion variational autoencoder (I-VAE).

Installation

git clone https://github.com/sisl/I-VAE
cd I-VAE/ivae
pip install .

Usage

from ivae import IVAE, train

model = IVAE(state_channels, obs_channels, latent_dim, dropout_rate)
for epoch in range(epochs):
    train(model, dataloader, val_dataloader, optimizer, device, epoch, epochs)

Where dataloader holds tuples of (state, obs). In the provided implementation, the state is an 80×80 tensor and the observations fill out a 200×200 tensor.

Examples

Example applied to MNIST given partial pixel observations.

Other examples applied to geological inversion, used as a way to update a POMDP belief through posterior state samples.

Citation

In progress

About

The inversion variational autoencoder (I-VAE) implemented in PyTorch

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages