Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ashenoy95/ml

Machine Learning, Neural Nets, Deep Learning basics
https://github.com/ashenoy95/ml

backpropagation expectation-maximization-algorithm gmm lstm ml mlp mnist-classification neural-network python3 rnn-tensorflow speech-denoising

Last synced: about 1 month ago
JSON representation

Machine Learning, Neural Nets, Deep Learning basics

Awesome Lists containing this project

README

        

# Machine Learning

* __speech-denoising__: MLP and RNN based speech denoiser implementations using TensorFlow.

* __em.py__: EM algorithm for a Mixture of Gaussians on one-dimensional data.

* __mnist-shallow.py__: TensorFlow implementation of MLP (1024x5) using ReLU activation, He initialization and Adam optimization giving over 98% accuracy. Also analysing TSNE & PCA.

* __nw_compression.ipynb__: Network compression of 'mnist-shallow' using low rank approximation of trained weights (using the top 20 singular values after SVD), thereby using only about 4% of the memory of the original network.

* __parity.py__: MLP (4-4-1) with backprop from scratch to solve the parity problem for a 4-bit input.