Doing cool stuff with an autoencoder trained on the Fashion MNIST dataset.
autoencoder.mp4
-
Save weights for use in the web app ->
python generate_js_weights.py
-
Save all the images needed ->
python save_images_txt.py
-
Start flask server
python app.py
New images can be generated by sampling the autoencoder's latent space.
Generate
Interpolation between images can be performed by linearly interpolating between the latent vectors of those images and then feeding that into the decoder part of the autoencoder.
Interpolate