{"id":25489,"date":"2020-04-03T16:50:36","date_gmt":"2020-04-03T11:20:36","guid":{"rendered":"https:\/\/cyfuture.com\/blog\/?p=25489"},"modified":"2020-04-03T17:57:51","modified_gmt":"2020-04-03T12:27:51","slug":"beginners-guide-to-deep-learning-neural-networks","status":"publish","type":"post","link":"https:\/\/cyfuture.com\/blog\/beginners-guide-to-deep-learning-neural-networks\/","title":{"rendered":"A Beginner&#8217;s Guide to Deep Learning &#038; Neural Networks"},"content":{"rendered":"\n<p>Unless you live in a far-flung island, you must have come across the term \u2018deep learning\u2019 at least a couple of times while browsing the internet. Put simply, deep learning is a subset of machine learning that learns from examples, similar to what humans do.<\/p>\n<p>Deep learning teaches a machine to process inputs through layers to predict and classify information. These inputs can be in the form of <strong>image, text or sound. <\/strong><\/p>\n<p>Similar to how humans learn from their own experience, <strong>deep learning models learn from large sets of data.<\/strong> They repeat the same task of classifying\/predicting data over and over again in order to improve their accuracy in getting the desired results.<\/p>\n<p>Any deep learning model learns using an <strong>artificial neural network<\/strong>.<\/p>\n<p>Let us first try to understand what these artificial neural networks are.<\/p>\n<p>Deep learning tries to mimic the human brain in filtering and processing information.<\/p>\n<p>In the human brain, there are about 100 billion neurons. Each of these neurons connects to about 100,000 other neighbouring neurons. As a result, a complex network of neurons is created. See image below.<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-25512\" src=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Human-Brain-has-over-100-billion-neurons.jpg\" alt=\"Human Brain has over 100 billion neurons\" width=\"640\" height=\"453\" srcset=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Human-Brain-has-over-100-billion-neurons.jpg 1022w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Human-Brain-has-over-100-billion-neurons-300x212.jpg 300w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Human-Brain-has-over-100-billion-neurons-768x543.jpg 768w\" sizes=\"(max-width: 640px) 100vw, 640px\" \/><\/p>\n<p><span style=\"color: #003366; background-color: #ffffff;\"><em>Figure 1: Human Brain has a complex network of over 100 billion neurons.<\/em><\/span><\/p>\n<p>Deep learning tries to replicate this complex network, but in a way that works for machines. So, while in a human brain we have real brain cells, deep learning models have interconnected processing elements (neurons) that work together to solve a specific problem.<\/p>\n<p>In its simplest form, a neuron is something that holds a number between 0 and 1.<\/p>\n<p>In a deep learning architecture, these neurons are sorted in three different kinds of layers:<\/p>\n<ul>\n<li>Input Layer<\/li>\n<li>Hidden Layer(s)<\/li>\n<li>Output Layer<\/li>\n<\/ul>\n<p><strong>Input Layer:<\/strong> This layer of neural network receives the data (in the form of text, image or sound) and then passes it on to the hidden layers for processing.<\/p>\n<p><strong>Hidden Layers(s):<\/strong> This is the second part of the neural network where all the mathematical computations take place. A neural network can have up to hundreds of hidden layers.<\/p>\n<p><strong>Output Layer: <\/strong>This layer gathers the computation done by the hidden layers and presents it in a way humans can understand.<\/p>\n<p>The image below depicts the architecture of a deep learning model:<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-25508 size-full\" src=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/architecture-of-a-deep-learning-model.png\" alt=\"architecture of a deep learning model\" width=\"589\" height=\"283\" srcset=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/architecture-of-a-deep-learning-model.png 589w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/architecture-of-a-deep-learning-model-300x144.png 300w\" sizes=\"(max-width: 589px) 100vw, 589px\" \/><\/p>\n<p><span style=\"color: #003366;\"><em>Figure 2: The image shows the architecture of a deep learning model.<\/em><\/span><\/p>\n<p>So, by now, you would have probably understood why we call it deep learning: there are so many layers involved.<\/p>\n<p>Let us now see how these neural networks learn.<\/p>\n<p>In a neural network, we do not tell the program what we want. We give the network inputs and what we want for the output and allow it to learn on its own. We just build the architecture and let it learn on its own.<\/p>\n<p>Once trained, the model gives you the desired output for a given input. Deep learning models are trained using huge sets of data, so they often learn much faster than humans.<\/p>\n<p>In a neural network, each layer of neurons uses the output of the previous layer for its input. This layer attempts to transform this input data into something more composite.<\/p>\n<p>Let us try to understand this by using a simple example.<\/p>\n<p>Say your neural network is designed to recognise faces. The first layer of the neural network may analyse the brightness of the pixels. The second layer may identify any edges in the images. The third layer may recognise textures and shapes. The next one may identify features like nose and eyes and so on until the final layer gives the output.<\/p>\n<p>Once the layers have processed the data, we can label the outputs and find out how accurate the network is. We can then use backpropagation to improve its accuracy. After some time, the network learns to recognise images on its own, without requiring any human intervention.<\/p>\n<p>Now that you have an overall idea of how a neural network works, let us try to understand what happens inside a neuron.<\/p>\n<p><strong>A neuron takes in information in numerical form. This information is represented in the form of an activation value.<\/strong><\/p>\n<p>Higher is this activation value, higher is the activation of the neuron. The activation value of a neuron lies between 0 and 1.<\/p>\n<p>Now neurons in all the layers (except the first layer) receive inputs that are the outputs from neurons of the previous layer. The connection between any two neurons has a unique weight attached to it.<\/p>\n<p>A neuron receiving inputs calculates the weighted sum of the activation values it receives. A bias value may be added to this weighted sum.<\/p>\n<p>The neuron finally applies an activation function to the obtained value. The purpose of applying this activation function is to translate the output to a range like 0 to 1. The activation function helps the neuron understand if it needs to pass along a signal or not.<\/p>\n<p>The activation passes through the entire neural network till it reaches the outermost neurons. Here we get the output in a form that we can understand. (text, image, sound).<\/p>\n<p>Here is a diagram depicting the operations taking place in a single neuron:<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-25513\" src=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/operations-taking-place-in-a-single-neuron.png\" alt=\"operations taking place in a single neuron\" width=\"640\" height=\"325\" srcset=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/operations-taking-place-in-a-single-neuron.png 651w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/operations-taking-place-in-a-single-neuron-300x153.png 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" \/><\/p>\n<p><span style=\"color: #003366;\"><em>Figure 3: An image depicting the operations taking place in a single neuron.<\/em><\/span><\/p>\n<p>A neural network has a cost function that compares the actual output with the expected output. In other words, the cost function determines the accuracy of the network. The lower the cost function, the higher is the accuracy of your network.<\/p>\n<p><strong>Once the cost function has been evaluated, the information travels backwards along the network and the network tries to minimize the cost function by tweaking the weights. This process is called as backpropagation.<\/strong><\/p>\n<p>Because of the way deep learning models are structured, you can adjust all the weights simultaneously.<\/p>\n<p>So, I hope this introduction to deep learning has given you a surface-level understanding of how deep learning works.<\/p>\n<p>Let us now have a look at what deep learning can do for you. Below are some of the use cases of deep learning:<\/p>\n<p><strong>1)&nbsp; Image Recognition<\/strong><\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-25511\" src=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Deep-learning-models-are-used-for-facial-recognition.png\" alt=\"Deep learning models are used for facial recognition\" width=\"640\" height=\"533\" srcset=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Deep-learning-models-are-used-for-facial-recognition.png 987w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Deep-learning-models-are-used-for-facial-recognition-300x250.png 300w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Deep-learning-models-are-used-for-facial-recognition-768x640.png 768w\" sizes=\"(max-width: 640px) 100vw, 640px\" \/><\/p>\n<p><span style=\"color: #000080;\"><em>Figure 4: Deep learning models are being widely used for facial recognition.<\/em><\/span><\/p>\n<p>Deep learning algorithms can identify random objects within larger images. This property is being used in engineering applications to identify shapes for modelling. It is also used for tagging users on social networks. Deep Face used by Facebook is a classic example in this regard.<\/p>\n<p><strong>2) <\/strong><strong>Speech Recognition<\/strong><\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-25515 size-large\" src=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Virtual-assistants-are-successful-applications-of-deep-learning-in-voice-recognition-1024x683.jpg\" alt=\"Virtual assistants are successful applications of deep learning in voice recognition\" width=\"640\" height=\"427\" srcset=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Virtual-assistants-are-successful-applications-of-deep-learning-in-voice-recognition-1024x683.jpg 1024w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Virtual-assistants-are-successful-applications-of-deep-learning-in-voice-recognition-300x200.jpg 300w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Virtual-assistants-are-successful-applications-of-deep-learning-in-voice-recognition-768x512.jpg 768w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Virtual-assistants-are-successful-applications-of-deep-learning-in-voice-recognition.jpg 1130w\" sizes=\"(max-width: 640px) 100vw, 640px\" \/><\/p>\n<p><span style=\"color: #003366;\"><em>Figure 5: Virtual assistants like Alexa are successful applications of deep learning in voice recognition.<\/em><\/span><\/p>\n<p>It is one of the most widely used applications of deep learning. Alexa, Siri, Google Home and Cortana are all based on deep learning models.<\/p>\n<p><strong>3) Text Analysis<\/strong><\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-25509 size-large\" src=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Deep-learning-algorithms-find-extensive-usage-in-text-analysis-1024x683.jpg\" alt=\"Deep learning algorithms find extensive usage in text analysis\" width=\"640\" height=\"427\" srcset=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Deep-learning-algorithms-find-extensive-usage-in-text-analysis-1024x683.jpg 1024w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Deep-learning-algorithms-find-extensive-usage-in-text-analysis-300x200.jpg 300w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Deep-learning-algorithms-find-extensive-usage-in-text-analysis-768x512.jpg 768w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Deep-learning-algorithms-find-extensive-usage-in-text-analysis.jpg 1234w\" sizes=\"(max-width: 640px) 100vw, 640px\" \/><\/p>\n<p><span style=\"color: #003366;\"><em>Figure 6: Deep learning algorithms find extensive usage in text analysis.<\/em><\/span><\/p>\n<p>One of the significant applications of text analysis is Natural Language Processing (NLP). In NLP, a large chunk of text is broken down so as to make the machine handle it. It is then analysed for intent, sentiment or relevance to a specific topic.<\/p>\n<p><strong>4) Drug Discovery<\/strong><\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-25514 size-large\" src=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/use-of-neural-networks-to-facilitate-drug-discovery-1024x633.jpg\" alt=\"use of neural networks to facilitate drug discovery\" width=\"640\" height=\"396\" srcset=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/use-of-neural-networks-to-facilitate-drug-discovery-1024x633.jpg 1024w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/use-of-neural-networks-to-facilitate-drug-discovery-300x185.jpg 300w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/use-of-neural-networks-to-facilitate-drug-discovery-768x475.jpg 768w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/use-of-neural-networks-to-facilitate-drug-discovery.jpg 1379w\" sizes=\"(max-width: 640px) 100vw, 640px\" \/><\/p>\n<p><span style=\"color: #003366;\"><em>Figure 7: Atomwise has been using neural networks to facilitate drug discovery.<\/em><\/span><\/p>\n<p>Atomwise, a start-up incepted in 2012, is capitalizing on deep learning to shorten the process of drug discovery. It\u2019s software AtomNet uses neural networks to study molecules and predict how they might act in the human body, including their efficacy, toxicity and side-effects. This reduces the time involved in synthesizing and testing new compounds. Atomwise currently screens more than 10 million compounds every single day.<\/p>\n<p><strong>5) Cyber Security<\/strong><\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-25510 size-large\" src=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Deep-learning-can-reduce-the-risks-and-expenses-in-threat-detection-1024x692.jpg\" alt=\"Deep learning can reduce the risks and expenses in threat detection\" width=\"640\" height=\"433\" srcset=\"https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Deep-learning-can-reduce-the-risks-and-expenses-in-threat-detection-1024x692.jpg 1024w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Deep-learning-can-reduce-the-risks-and-expenses-in-threat-detection-300x203.jpg 300w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Deep-learning-can-reduce-the-risks-and-expenses-in-threat-detection-768x519.jpg 768w, https:\/\/cyfuture.com\/blog\/ojycekam\/2020\/04\/Deep-learning-can-reduce-the-risks-and-expenses-in-threat-detection.jpg 1379w\" sizes=\"(max-width: 640px) 100vw, 640px\" \/><\/p>\n<p><span style=\"color: #003366;\"><em>Figure 8: Deep learning can reduce the risks and expenses involved in threat detection.<\/em><\/span><\/p>\n<p>Deep learning can reduce the risks and expenses related to threat detection in cybersecurity. Many deep learning models can have as much as 99% detection rate. Sophisticated neural networks have been built for intrusion detection, malware as well as malicious code detection.<\/p>\n<p>Here is a table depicting the use cases for deep learning:<\/p>\n<table style=\"border-collapse: collapse; border: none;\">\n<tbody>\n<tr>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-left: 1pt solid #4472c4; border-bottom: none; border-right: none; background: #4472c4; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><strong><span style=\"font-size: 19px; color: white;\">Use Case<\/span><\/strong><\/p>\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><strong><span style=\"font-size: 19px; color: white;\">&nbsp;<\/span><\/strong><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-left: none; border-bottom: none; border-right: 1pt solid #4472c4; background: #4472c4; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><strong><span style=\"font-size: 19px; color: white;\">Industry<\/span><\/strong><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-left: 1pt solid #4472c4; border-image: initial; border-right: none; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><strong><span style=\"font-size: 19px;\">Image&nbsp;<\/span><\/strong><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-right: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-image: initial; border-left: none; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">&nbsp;<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: none; border-right: none; border-bottom: none; border-image: initial; border-left: 1pt solid #4472c4; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Facial Recognition<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: none; border-bottom: none; border-left: none; border-image: initial; border-right: 1pt solid #4472c4; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Social Media<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-left: 1pt solid #4472c4; border-image: initial; border-right: none; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Face Unlock<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-right: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-image: initial; border-left: none; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Smartphones<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: none; border-right: none; border-bottom: none; border-image: initial; border-left: 1pt solid #4472c4; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Machine Vision<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: none; border-bottom: none; border-left: none; border-image: initial; border-right: 1pt solid #4472c4; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Automotive<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-left: 1pt solid #4472c4; border-image: initial; border-right: none; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">&nbsp;<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-right: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-image: initial; border-left: none; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">&nbsp;<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: none; border-right: none; border-bottom: none; border-image: initial; border-left: 1pt solid #4472c4; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><strong><span style=\"font-size: 19px;\">Text<\/span><\/strong><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: none; border-bottom: none; border-left: none; border-image: initial; border-right: 1pt solid #4472c4; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">&nbsp;<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-left: 1pt solid #4472c4; border-image: initial; border-right: none; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Sentiment Analysis<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-right: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-image: initial; border-left: none; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">CRM, Social Media<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: none; border-right: none; border-bottom: none; border-image: initial; border-left: 1pt solid #4472c4; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Fraud Detection<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: none; border-bottom: none; border-left: none; border-image: initial; border-right: 1pt solid #4472c4; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Finance<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-left: 1pt solid #4472c4; border-image: initial; border-right: none; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Email Filtering<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-right: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-image: initial; border-left: none; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Digital Marketing<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: none; border-right: none; border-bottom: none; border-image: initial; border-left: 1pt solid #4472c4; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><strong><span style=\"font-size: 19px;\">&nbsp;<\/span><\/strong><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: none; border-bottom: none; border-left: none; border-image: initial; border-right: 1pt solid #4472c4; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">&nbsp;<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-left: 1pt solid #4472c4; border-image: initial; border-right: none; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><strong><span style=\"font-size: 19px;\">Sound<\/span><\/strong><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-right: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-image: initial; border-left: none; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">&nbsp;<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: none; border-right: none; border-bottom: none; border-image: initial; border-left: 1pt solid #4472c4; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Voice Search<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: none; border-bottom: none; border-left: none; border-image: initial; border-right: 1pt solid #4472c4; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Smartphones<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-left: 1pt solid #4472c4; border-image: initial; border-right: none; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Voice Recognition<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-right: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-image: initial; border-left: none; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Internet of Things<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: none; border-right: none; border-bottom: none; border-image: initial; border-left: 1pt solid #4472c4; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Engine Noise Detection<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: none; border-bottom: none; border-left: none; border-image: initial; border-right: 1pt solid #4472c4; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Automotive<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-left: 1pt solid #4472c4; border-image: initial; border-right: none; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">&nbsp;<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-right: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-image: initial; border-left: none; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">&nbsp;<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: none; border-right: none; border-bottom: none; border-image: initial; border-left: 1pt solid #4472c4; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><strong><span style=\"font-size: 19px;\">Video<\/span><\/strong><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: none; border-bottom: none; border-left: none; border-image: initial; border-right: 1pt solid #4472c4; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">&nbsp;<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-left: 1pt solid #4472c4; border-image: initial; border-right: none; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Motion Detection<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-right: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-image: initial; border-left: none; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Gaming, UI-UX<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: none; border-right: none; border-bottom: none; border-image: initial; border-left: 1pt solid #4472c4; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Threat Detection<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: none; border-bottom: none; border-left: none; border-image: initial; border-right: 1pt solid #4472c4; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Airports<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-left: 1pt solid #4472c4; border-image: initial; border-right: none; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><strong><span style=\"font-size: 19px;\">&nbsp;<\/span><\/strong><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-right: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-image: initial; border-left: none; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">&nbsp;<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: none; border-right: none; border-bottom: none; border-image: initial; border-left: 1pt solid #4472c4; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><strong><span style=\"font-size: 19px;\">Time Series<\/span><\/strong><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: none; border-bottom: none; border-left: none; border-image: initial; border-right: 1pt solid #4472c4; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">&nbsp;<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-left: 1pt solid #4472c4; border-image: initial; border-right: none; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Log Analysis<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-right: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-image: initial; border-left: none; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Finance, Data Centres<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: none; border-right: none; border-bottom: none; border-image: initial; border-left: 1pt solid #4472c4; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Recommendation Engine<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: none; border-bottom: none; border-left: none; border-image: initial; border-right: 1pt solid #4472c4; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">E-commerce<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-left: 1pt solid #4472c4; border-image: initial; border-right: none; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Enterprise Resource Planning<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-right: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-image: initial; border-left: none; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Manufacturing, Supply Chain<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: none; border-right: none; border-bottom: none; border-image: initial; border-left: 1pt solid #4472c4; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Business Analytics<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: none; border-bottom: none; border-left: none; border-image: initial; border-right: 1pt solid #4472c4; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Finance, Economics<\/span><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-left: 1pt solid #4472c4; border-image: initial; border-right: none; background: white; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Predictive Analytics from Sensor Data<\/span><\/p>\n<\/td>\n<td style=\"width: 225.4pt; border-top: 1pt solid #4472c4; border-right: 1pt solid #4472c4; border-bottom: 1pt solid #4472c4; border-image: initial; border-left: none; padding: 0in 5.4pt; vertical-align: top;\">\n<p style=\"line-height: normal; font-size: 15px; font-family: 'Calibri','sans-serif'; margin: 0in 0in .0001pt 0in;\"><span style=\"font-size: 19px;\">Manufacturing, Internet of Things<\/span><\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><span style=\"color: #003366;\"><em>Source: Pathmind.com<\/em><\/span><\/p>\n<p>So, that\u2019s all on deep learning. If you want to dig deeper into neural networks and deep learning, check out the following resources:<\/p>\n<p><a href=\"https:\/\/towardsdatascience.com\/simply-deep-learning-an-effortless-introduction-45591a1c4abb\">The Complete Beginner\u2019s Guide to Deep Learning: Artificial Neural Networks<\/a><\/p>\n<p><a href=\"https:\/\/pathmind.com\/wiki\/neural-network\">A Beginner&#8217;s Guide to Neural Networks and Deep Learning<\/a><\/p>\n<p>I found these resources immensely helpful, hope they will help you too.<\/p>\n<p><em>Thanks for reading!<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":25540,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[],"_links":{"self":[{"href":"https:\/\/cyfuture.com\/blog\/wp-json\/wp\/v2\/posts\/25489"}],"collection":[{"href":"https:\/\/cyfuture.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cyfuture.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cyfuture.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/cyfuture.com\/blog\/wp-json\/wp\/v2\/comments?post=25489"}],"version-history":[{"count":5,"href":"https:\/\/cyfuture.com\/blog\/wp-json\/wp\/v2\/posts\/25489\/revisions"}],"predecessor-version":[{"id":25869,"href":"https:\/\/cyfuture.com\/blog\/wp-json\/wp\/v2\/posts\/25489\/revisions\/25869"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cyfuture.com\/blog\/wp-json\/wp\/v2\/media\/25540"}],"wp:attachment":[{"href":"https:\/\/cyfuture.com\/blog\/wp-json\/wp\/v2\/media?parent=25489"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cyfuture.com\/blog\/wp-json\/wp\/v2\/categories?post=25489"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cyfuture.com\/blog\/wp-json\/wp\/v2\/tags?post=25489"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}