Tag: #Classifier

My Tech World

DAY 98-100 DAYS MLCODE: Emotion detection using Keras part 2

In the previous blog, we started by downloading data, in this blog we’ll try to develop an Emotion detection model which will able to find the emotion in an image. Let’s first convert the data into the format which is accepted to VGA architecture. Normalize the pixel value by transforming the pixels column to float values…
Read more


February 18, 2019 0

DAY 45-100 DAYS MLCODE: Convolutional Neural Networks (CNN)

In the previous blogs we have discussed the DNN and how to use pre-trained model for training, in this blog, we’ll discuss Convolutional Neural Networks ( CNN). As per the Wikipedia: In deep learning, a convolutional neural network (CNN, or ConvNet) is a class of deep neural networks, most commonly applied to analyzing visual imagery. Convolutional networks were inspired by biological processes[4] in that the…
Read more


December 25, 2018 0

DAY 30-100 DAYS MLCODE: PCA example

In the previous blogs, we discussed PCA, in this blog, we are going to work on below problem as PCA example. Problem Statement Load the MNIST dataset and split it into a training set and a test set (take the first 60,000 instances for training, and the remaining 10,000 for testing). Train a Random Forest classifier…
Read more


December 9, 2018 0

DAY 25-100 DAYS MLCODE: Boosting

Boosting enable a set of a weak learner to form a strong learner. Boosting is an ensemble method to reduce the bias and variances in supervised learning.  You can find the previous blog here. In boosting we train the model sequentially and try to reduce the error predicted by a predecessor.   There are several method of…
Read more


December 4, 2018 0

DAY 24-100 DAYS MLCODE: Features Importance

Features Importance:  In this blog, we are going to discuss Features Importance. In the previous blog,  we have seen the bagging and pasting technique, these are ensemble technique and one of the most famous ensemble technique is Random Forest. Random forest not only help us to provide a better model using ensemble learning technique on…
Read more


December 4, 2018 0

DAY 22-100 DAYS MLCODE: Ensemble Learning

In the previous blog, we discussed the Random Forest, but before going dip into the Random Forest algorithm, let’s understand the Ensemble Learning.  Consider the scenario where you are asking people ( predictor) to predict something and then if you use the predictions of all the people ( predictor) to predict the best value, this…
Read more


December 1, 2018 0

DAY 21-100 DAYS MLCODE: Random Forest

In previous blog, we completed the the decision tree and in the blog, we’ll start working with Random Forest algorithm in this blog. As per Wikipedia: Random forests or random decision forests are an ensemble learning method for classification, regression and other tasks, that operate by constructing a multitude of decision trees at training time and outputting the class that is the mode of the classes (classification)…
Read more


November 30, 2018 0

DAY 16-100 DAYS MLCODE: Decision Trees

In the last three blogs, we had discussed about the SVM. In this blog, we shall walkthrough a simple example of Decision Trees algorithm. Like SVM, Decision Trees are powerful algorithm of machine learning and can perform regression as well as classification task. You can perform the classification or regression on complex data using Decision…
Read more


November 25, 2018 0

DAY 14-100 DAYS MLCODE: SVM

This blog is continuation of our previous blog about SVM.  In today’s blog, we are going to focus other classes of the SciKit Learn to implement the SVM for linear and none linear classification. In last blog we used the LinearSVC class of SciKit-Learn to implement the the SVM .  Let’s start creating the linear classification using the…
Read more


November 23, 2018 0