Machine Learning

Siamese network

Similarity Learning with Siamese Networks

One of the most fascinating problems in machine learning is determining the similarity between two data points. From signature verification and face recognition to recommendation systems, learning to compare and decide similarities is important. A powerful approach to this problem is Similarity Learning using Siamese Networks. Siamese Networks are a type of neural network architecture […]

Similarity Learning with Siamese Networks Read More »

Latent Dirichlet Allocation

Understanding Latent Dirichlet Allocation (LDA)

Contributed by: Arun K Sharma Imagine a large law firm takes over a smaller law firm and tries to identify the documents corresponding to different types of cases such as civil or criminal cases which the smaller firm has dealt or is currently dealing with. The presumption is that the documents are not already classified

Understanding Latent Dirichlet Allocation (LDA) Read More »

Frontend Languages

Linear Discriminant Analysis or LDA in Python

Linear discriminant analysis is supervised machine learning, the technique used to find a linear combination of features that separates two or more classes of objects or events.  Linear discriminant analysis, also known as LDA,  does the separation by computing the directions (“linear discriminants”) that represent the axis that enhances the separation between multiple classes. Also, Linear

Linear Discriminant Analysis or LDA in Python Read More »

bagging and boosting

Understanding the Ensemble method Bagging and Boosting

Bias and Variance  Ensemble Methods Bagging Boosting Bagging vs Boosting Implementation Bias and Variance  For the same set of data, different algorithms behave differently. For example, if we want to predict the price of houses given for some dataset, some of the algorithms that can be used are Linear Regression and Decision Tree Regressor. Both

Understanding the Ensemble method Bagging and Boosting Read More »

logistic regression

Logistic Regression With Examples in Python and R

In every algorithm of machine learning, there is an approach that is unique yet easily interpretable. Logistic regression is one such algorithm with an easy and unique approach. It is very often used in the credit and risk industry for its easy intuition on predicting the chances of default and risk cases. It is indeed

Logistic Regression With Examples in Python and R Read More »

Scroll to Top