ALI
ALI copied to clipboard
Adversarially Learned Inference
Hello,I read the paper and the source code.And it mentioned 'The last three hidden layers of the encoder as well as its output are concatenated to form a 8960-dimensional feature...
In the decoder module. I found that z is sampled from N(0, 1), so where did you use the reparametrization trick described in formual (2) and (3) in the paper
I've been trying to reproduce your figures for semi-supervised learning on CIFAR-10 (19.98% with 1000 labels). This result is based on the technique proposed in Salimans et al. (2016), not...
I need to load a pretrained model with CPU only, but it appears the cuda arrays are serialized as such. Is there any way around this?
Could you possibly upload this or provide an external link?
Hi, I was trying to reproduce the representation learning results of paper. Everything works fine except "preprocess_representations" script. It is leading to this error: File "scripts/preprocess_representations", line 32, in preprocess_svhn...
I followed the same steps in the readme file, but when I run this line `$ THEANORC=theanorc python experiments/ali_cifar10.py` I get: ``` Traceback (most recent call last): File "experiments/ali_cifar10.py", line...
In the paper and code you used a set of 1x1 2D convolution layers to process the latent vector z in the discriminator. What was the motivation behind using 2D...
Hi, I am so interested with your work, could you upload your pre-trained models (i.e., ImageNet) online ? Thanks!
Hi, in the paper pseudocode, for Loss_d and Loss_g, the gradient ascent is turned into gradient descent by making the whole loss negative (negative signs in front of every term)....