Thursday, January 23, 2020

What is Feature Engineering?

Feature engineering is a process of taking unrefined raw data and converting it into meaningful features that your model can understand better, and provide a better decision boundary. To give an example, think if you are a retailer, and you want to target your customers who you think will not do business...

Thursday, October 10, 2019

Permutations and Combinations

Permutations When the order does matter it is called Permutation. In other words, a Permutation is an ordered Combination. We should really call this a "Permutation Lock"! There are basically two types of permutation: Repetition is Allowed: such as the lock above. It could be "00000". No Repetition:...

Mean vs Variance vs Standard Deviation

Mean: The mean is the average of the numbers. Variance: Variance is nothing but the average of the squares of the deviations. Standard Deviation: Standard Deviation is the square root of the numerical value obtained while calculating variance. Definition of Variance In statistics, variance is...

Monday, September 30, 2019

Simple Linear regression

Let’s take a look at this dataset. It’s related to the Co2 emission of different cars. It includes Engine size, Cylinders, Fuel Consumption and Co2 emissions for various car models. The question is: Given this dataset, can we predict the Co2 emission of a car, using another field, such as Engine...

Wednesday, September 25, 2019

Regression Models

The regression model is a powerful method that allows you to examine the relationship between two or more variables of interest. In other word, Regression models (both linear and non-linear) are used for predicting a real value, like salary for example. If your independent variable is time, then you...

Wednesday, September 18, 2019

What is TensorFlow? Introduction, Architecture

What is TensorFlow? Currently, the most famous deep learning library in the world is Google's TensorFlow. Google product uses machine learning in all of its products to improve the search engine, translation, image captioning or recommendations. To give a concrete example, Google users can experience a faster and more refined the search with AI. If the user types a keyword in the search bar, Google...