Deep Learning for Facial Recognition in Machine Learning

AmitDiwan
Updated on 11-Dec-2020 10:51:40

283 Views

Face recognition is the task of identifying and verifying people present in a photograph based on their face. This is a trivial task for humans, even if the lights are varying or when faces change due to age or they are obstructed with accessories, facial hair and so on.But it remained a fairly challenging computer vision problem until a few years back. Deep learning methods have been able to leverage large datasets of faces and learn various representations of faces, thereby allowing modern learning models to perform well and better.Facial recognition may be used to identify person in a photograph ... Read More

Layers in a Neural Network for Deep Learning in Machine Learning

AmitDiwan
Updated on 11-Dec-2020 10:50:51

655 Views

A neural network can contains any number of neurons. These neurons are organized in the form of interconnected layers. The input layer can be used to represent the dataset and the initial conditions on the data.For example, suppose the input is a grayscale image, the output of every neuron in the input layer would be the intensity of every pixel of the image.This is the reason we don’t count the input layer as a part of the other layers in the neural network. When we refer to a 1-layer net, we actually refer to a simple network that contains one ... Read More

Visualize Data with Multiple Variables Using Seaborn in Python

AmitDiwan
Updated on 11-Dec-2020 10:49:44

303 Views

Seaborn is a library that helps in visualizing data. It comes with customized themes and a high level interface. In real-time situations, dataset contains many variables. Sometimes, it may be required to analyse the relationship of every variable with every other variable in the dataset. In such situations, bivariate distribution may take up too much time and may get complicated as well.This is where multiple pairwise bivariate distribution comes into picture. The ‘pairplot’ function can be used to get the relationship between combinations of variables in a dataframe. The output would be a univariate plot.Syntax of pairplot functionseaborn.pairplot(data, …)Now let ... Read More

Display Kernel Density Estimation Plot using Seaborn Joinplot in Python

AmitDiwan
Updated on 11-Dec-2020 10:48:33

216 Views

Seaborn is a library that helps in visualizing data. It comes with customized themes and a high level interface.Kernel Density Estimation, also known as KDE is a method in which the probability density function of a continuous random variable can be estimated. This method is used for the analysis of the non-parametric values. While using ‘jointplot’, if the argument ‘kind’ is set to ‘kde’, it plots the kernel density estimation plot.Let us understand how the ‘jointplot’ function works to plot a kernel density estimation in python.Exampleimport pandas as pd import seaborn as sb from matplotlib import pyplot as plt my_df ... Read More

Convert Image from RGB to Grayscale using Scikit-Learn in Python

AmitDiwan
Updated on 11-Dec-2020 10:47:34

2K+ Views

Scikit-learn, commonly known as sklearn is a library in Python that is used for the purpose of implementing machine learning algorithms.Conversion of an image from one color space to another is usually used so that the newly achieved color space can prove as a better input to perform other operations on it. This includes separating hues, luminosity, saturation levels, and so on. When an image is represented using RGB representation, the hue and luminosity attributes are shown as a linear combination of channels R, G and B.When an image with RGB color space is tried to be converted to grayscale, ... Read More

Convert RGB Color Space to Different Color Space in Python

AmitDiwan
Updated on 11-Dec-2020 10:46:13

566 Views

Conversion of an image from one color space to another is usually used so that the newly achieved color space can prove as a better input to perform other operations on it. This includes separating hues, luminosity, saturation levels, and so on.When an image is represented using RGB representation, the hue and luminosity attributes are shown as a linear combination of channels R, G and B.When an image is representing using HSV representation (here, H represents Hue and V represents Value), RGB is considered as a single channel.Here’s the example to convert RGB color space to HSV −Exampleimport matplotlib.pyplot as ... Read More

Display Hexbin Plot Using Seaborn Library in Python

AmitDiwan
Updated on 11-Dec-2020 10:45:07

2K+ Views

Seaborn is a library that helps in visualizing data. It comes with customized themes and a high level interface. This interface helps in customizing and controlling the kind of data and how it behaves when certain filters are applied to it.Hexagonal binning can be used in the analysis of bivariate data. This occurs when the data is sparse, i.e. when the data is scattered unevenly. When the data is scattered unevenly, it gets difficult to capture all the data points in a scatterplot.This is where hexagonal binning comes into play. Let us understand how seaborn library can be used to ... Read More

Use FactorPlot in Seaborn to Visualize Data in Python

AmitDiwan
Updated on 11-Dec-2020 10:43:49

1K+ Views

Seaborn is a library that helps in visualizing data. It comes with customized themes and a high level interface.The barplot function establishes the relationship between a categorical variable and a continuous variable. Data is represented in the form of rectangular bars where the length of the bar indicates the proportion of data in that specific category.Point plots are similar to bar plots but instead of representing the fill bar, the estimated value of the data point is represented by a point at a specific height on the other axis.Categorical data can be visualized using categorical scatter plots or two separate ... Read More

Visualize Point Plots in Python Using Seaborn Library

AmitDiwan
Updated on 11-Dec-2020 10:42:46

169 Views

Seaborn is a library that helps in visualizing data. This interface helps in customizing and controlling the kind of data and how it behaves when certain filters are applied to it.With the help of bar plots, we can understand the central tendency of the distribution of data. The barplot function establishes the relationship between a categorical variable and a continuous variable.Data is represented in the form of rectangular bars where the length of the bar indicates the proportion of data in that specific category.Point plots are similar to bar plots but instead of representing the fill bar, the estimated value ... Read More

Visualize Data Using Countplot in Python Seaborn

AmitDiwan
Updated on 11-Dec-2020 10:41:45

284 Views

Seaborn is a library that helps in visualizing data. It comes with customized themes and a high-level interface.In previous plots, we plotted the entire dataset on the graph. With the help of bar plots, we can understand the central tendency of the distribution of data.The barplot function establishes the relationship between a categorical variable and a continuous variable. Data is represented in the form of rectangular bars where the length of the bar indicates the proportion of data in that specific category.A special case of barplot is the countplot that shows the number of observations in every category with respect ... Read More

Advertisements