Skip to content

zijia-yang/keras-autoencoder

 
 

Repository files navigation

Keras Autoencoder

A collection of different autoencoder types in Keras. It is inspired by this blog post.

Installation

Python is easiest to use with a virtual environment. All packages are sandboxed in a local folder so that they do not interfere nor pollute the global installation:

virtualenv --system-site-packages venv

Whenever you now want to use this package, type

source venv/bin/activate

in every terminal that wants to make use of it. Theano needs a newer pip version, so we upgrade it first:

pip install --upgrade pip

To install the dependencies, use pip:

pip install -r requirements.txt

If you want to use tensorflow as the backend, you have to install it as described in the tensorflow install guide. Then, change the backend for Keras like described here. Now everything is ready for use!

Usage

One can change the type of autoencoder in main.py.

python main.py

I currently use it for an university project relating robots, that is why this dataset is in there. Feel free to use your own!

About

Collection of autoencoders written in Keras

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%