Skip to content

Instantly share code, notes, and snippets.

View ypxie's full-sized avatar

Yuanpu Xie ypxie

View GitHub Profile
@ypxie
ypxie / conv_deconv_vae.py
Created October 27, 2015 01:14 — forked from kastnerkyle/conv_deconv_vae.py
Convolutional Variational Autoencoder, modified from Alec Radford at (https://gist.github.com/Newmu/a56d5446416f5ad2bbac)
# Alec Radford, Indico, Kyle Kastner
# License: MIT
"""
Convolutional VAE in a single file.
Bringing in code from IndicoDataSolutions and Alec Radford (NewMu)
Additionally converted to use default conv2d interface instead of explicit cuDNN
"""
import theano
import theano.tensor as T
from theano.compat.python2x import OrderedDict