Skip to content

Releases: revsic/tf-alae

MNIST + Style-ALAE

17 Aug 16:50
Compare
Choose a tag to compare
  • branch: master
  • commit: 80c0b7a
  • tag: MnistStyle
import json
from mnist_style import StyleMNIST

with open('settings.json') as f:
    settings = json.load(f)

alae = StyleMNIST(settings)
ckpt = tf.train.latest_checkpoint('./mnist_style')
alae.load_ckpt(ckpt)

MNIST + Mlp-ALAE

05 Aug 16:00
Compare
Choose a tag to compare
  • branch: master
  • commit: 1ee5f28
  • tag: MnistMlp
import json
from mnist_mlp import MnistAlae

with open('settings.json') as f:
    settings = json.load(f)

alae = MnistAlae(settings)
alae.load_weights('./mnist_mlp/mnist_mlp')