An open API service indexing awesome lists of open source software.

https://github.com/kirillseva/autoenc

Sparse autoencoder implementation in clean and readable R
https://github.com/kirillseva/autoenc

Last synced: 5 months ago
JSON representation

Sparse autoencoder implementation in clean and readable R

Awesome Lists containing this project

README

        

# autoenc: sparse autoencoders in R ![travis](https://img.shields.io/travis/kirillseva/autoenc.svg) ![codecov](https://img.shields.io/codecov/c/github/kirillseva/autoenc.svg)
Implementation based off [this article](http://web.stanford.edu/class/archive/cs/cs294a/cs294a.1104/sparseAutoencoder.pdf).

The goal is to have a very readable and well-tested implementation, so that autoencoders can be used in production and trusted.

The existing CRAN [implementation](https://github.com/cran/autoencoder) of autoencoders has no test coverage and is hard to follow, so auditing this package for any serious use case would involve spending quite a bit of time. Autoenc package is designed with code readability in mind, following best functional programming practices, in order to make it comfortable for others to use and enhance this package.