Git Product home page Git Product logo

ela's Introduction

Extreme Learning Autoencoder Tensorflow r1.13 implementation


This code is a tensorflow implementation of the algorithm on the paper: Autoencoder with Invertible Functions for Dimension Reduction and Image Reconstruction
Authors of the paper: Yimin Yang, Jonathan Wu, and Yaonan Wang

Author of this code: Peizhi Yan Affiliation: Lakehead University
Personal Website: https://PeizhiYan.github.io Date: March 24th, 2019
Tensorflow version: r1.13


Instruction:

For example, assume you want to reduce the dimension of MNIST dataset from 28*28 to 100, you can use the following lines of code:

"""create the ELA model"""
model = ELA(input_units=28*28, hidden_units=100, c=2**(8), activation='sin') 

"""train the model"""
model.train(x_train, 100) # x_train is the training dataset with shape [50000,28*28]; 100 is the numer of total training epochs

"""evaluate the model"""
print("MSE(train) :", model.evaluate(x_train))
print("MSE(train) :", model.evaluate(x_test))

"""encode data"""
x_train_encoding = model.encoding(x_train)

ela's People

Contributors

peizhiyan avatar

Stargazers

Matthew avatar

Watchers

Matthew avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.