Machine Learning Posts by Tags

2018

Linear Algebra

5 minute read

Linear algebra provides a way of compactly representing and operating on sets of linear equations. For example, consider the following system of equations:

Word2vec for Embedding

8 minute read

Word embedding is one of the most popular representation of document vocabulary. . Rather than build a sparse representation with One hot encoding we can bui...

Variational Auto Encoder

6 minute read

A variational autoencoder (VAE) provides a probabilistic manner for describing an observation in latent space. Thus, rather than building an encoder which ou...

Statistical Machine Learning

6 minute read

Machine learning algorithms build a mathematical model of sample data, known as “training data”, in order to make predictions or decisions without being expl...

Single Shot Detection

5 minute read

Single Shot MultiBox Detector Along with object detection we also want to localize and classify each element within our field of view. The previous architect...

Naive Bayes Classifier

5 minute read

#Naive Bayes Simple(“naive”) classifica1on method based on Bayes rule. It relies on very simple representa1on of document called the bag of words.

Post Quantum encryption based on Lattices

7 minute read

In the last four decades, many widely used public key cryptographic schemes have been designed based on the difficulty of factoring and other similar problem...

DCGAN

9 minute read

Generative Adversarial Networks

Dropout as bayesian approxiamtion

3 minute read

While current deep networks are widely used in multiple applications, they do have some issues: Neural networks compute point estimates Neural networks ...

Deep Learning Basics

9 minute read

Deep learning is part of a broader family of machine learning methods based on learning data representations, as opposed to task-specific algorithms. Learni...

Back to Top ↑