{"id":1736,"date":"2019-06-03T03:34:01","date_gmt":"2019-06-03T03:34:01","guid":{"rendered":"http:\/\/kusuaks7\/?p=1341"},"modified":"2023-06-23T12:44:08","modified_gmt":"2023-06-23T12:44:08","slug":"a-non-technical-guide-to-understanding-machine-learning","status":"publish","type":"post","link":"https:\/\/www.experfy.com\/blog\/ai-ml\/a-non-technical-guide-to-understanding-machine-learning\/","title":{"rendered":"A Non-Technical Guide To Understanding Machine Learning"},"content":{"rendered":"<p>In the last\u00a0<a href=\"https:\/\/www.experfy.com\/blog\/is-machine-learning-right-for-your-business\">post<\/a>, we discussed if machine learning was right for your business. As part of that effort, I recently went through the process of learning the ins-and-outs of machine learning and realized most information out there is technical and aimed at developers or data scientists.<\/p>\n<p>I thought an explanation from a non-technical person might be of interest.<\/p>\n<p>Let\u2019s begin.<\/p>\n<h2><strong>What exactly is machine learning?<\/strong><\/h2>\n<p>The simplest definition I came across: Machine learning is \u201c[&#8230;] the branch of AI that explores ways to get computers to improve their performance based on experience\u201d. Source:\u00a0<a href=\"http:\/\/bit.ly\/2iuqg44\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Berkeley<\/a><\/p>\n<p>Let\u2019s break that down to set some foundations on which to build our machine learning knowledge.<\/p>\n<p><strong>Branch of AI:\u00a0<\/strong>Artificial intelligence is the study and development by which a computer and its systems are given the ability to successfully accomplish tasks that would typically require a human\u2019s intelligent behavior. Machine learning is a part of that process. It\u2019s the technology and process by which we train the computer to accomplish the said task.<\/p>\n<p><strong>Explores ways:<\/strong>\u00a0Machine learning techniques are still emerging. Some models for training a computer are already recognized and used (as we will see below), but it is expected that more will be developed with time. The idea to be remembered here is that different models can be used when training a computer. Different business problems require different models.<\/p>\n<p><strong>Get computers to improve their performance:\u00a0<\/strong>For a computer to accomplish a task with AI, it needs practice and adaptation. A machine learning model needs to be trained using data and in most cases, a little human help.<\/p>\n<p><strong>Based on experience:\u00a0<\/strong>providing an AI with experience is another way of saying &#8211; to provide it with data. As more data is fed into the system, the more accurately the computer can respond to it and to future data that it will encounter. More accuracy in understanding the data means a better chance to successfully accomplish its given task or to increase its degree of confidence when providing predictive insight.<\/p>\n<p><strong>Quick example:<\/strong><\/p>\n<ol>\n<li>Entry data is chosen and prepared along with input conditions (e.g. credit card transactions).<\/li>\n<li>The machine learning algorithm is built and trained to accomplish a specific task (e.g.detect fraudulent transactions).<\/li>\n<li>The training data is augmented with the desired output information (e.g. these transactions appear fraudulent, these do not).<\/li>\n<\/ol>\n<p style=\"text-align: center;\">\n<h2><strong>How does machine learning work?<\/strong><\/h2>\n<p>Machine learning is often referred to as magical or a black box:<\/p>\n<p>Insert data \u2192 magic black box\u2192 Mission accomplished.<\/p>\n<p>Let\u2019s take a look at the training process itself to better understand how machine learning can create value with data.<\/p>\n<ul>\n<li><strong>Collect<\/strong>: Machine learning is dependent on data. The first step is to make sure you have the right data as dictated by the problem you are trying to solve. Consider your ability to collect it, its source, the required format, and so on.<\/li>\n<li><strong>Clean:<\/strong>\u00a0Data can be generated by different sources, contained in different file formats, and expressed in different languages. It might be required to add or remove information from your data set, as some instances might be missing information while others might contain undesired or irrelevant entries. Its preparation will impact its usability and the reliability of the outcome.<\/li>\n<li><strong>Split:<\/strong>\u00a0Depending on the size of your data set, only a portion might be required. This is usually referred to as sampling. From the chosen sample, your data should be split into two groups: one to train the algorithm and the other to evaluate it.<\/li>\n<li><strong>Train:<\/strong>\u00a0This stage essentially aims at finding the mathematical function that will accurately accomplish the chosen goal. Training takes on different forms depending on the type of model used. Fitting a line in a simple linear regression model can be seen as training; generating the decision trees for a Random Forest Algorithm is also training; changing the questions in a decision tree is effectively adjusting the parameters of the model.\u00a0To keep things simple, let\u2019s focus on neural networks. Basically, using a portion of your data set, the algorithm will attempt to process the data, measure its own performance and auto-adjust its parameters (also called\u00a0<a href=\"http:\/\/bit.ly\/2iuF0A0\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">backpropagation<\/a>) until it can consistently produce the desired outcome with sufficient reliability.<\/li>\n<li><strong>Evaluate:\u00a0<\/strong>Once the algorithm performs well on the training data, its performance is measured again with data that it has not yet seen. Additional adjustments are made when needed. This process allows you to prevent overfitting, which happens when the learning algorithm performs well but only with your training data.<\/li>\n<li><strong>Optimize:\u00a0<\/strong>The model is optimized for integration within the destined application to ensure it is as lightweight and as fast as possible.<\/li>\n<\/ul>\n<h2><strong>Are there different types of machine learning?<\/strong><\/h2>\n<p>There are many different models that can be used in machine learning but they are typically grouped into three different types of learning: supervised, unsupervised, and reinforcement. Depending on the task to complete, some models are more appropriate and better performing than others.<\/p>\n<p><strong>Supervised learning:\u00a0<\/strong>in this type of learning, the correct outcome for each data point is explicitly labeled when training the model. This means the learning algorithm is already given the answer when reading the data. Rather than finding the answer, it aims to find the relationship so that when unassigned data points are introduced, it can correctly classify or predict them.<\/p>\n<p>In a classification context, the learning algorithm could be, for example, fed with historic credit card transactions each labeled as\u00a0<em>safe<\/em>\u00a0or\u00a0<em>suspicious<\/em>. It would learn the relationship between these two classifications and could then label new transactions appropriately, according to the classification parameters (e.g. purchase location, time between transactions, etc.).<\/p>\n<p>In a context where data points are continuous in relation to one another, like a stock\u2019s price through time, a regression learning algorithm can be used to predict the following data point.<\/p>\n<p style=\"text-align: center;\">\n<p><strong>Unsupervised learning:\u00a0<\/strong>In this case, the learning algorithm is not given the answer during training. Its objective is to find meaningful relationships between the data points. Its value lies in discovering patterns and correlations. For example, clustering is a common use of unsupervised learning in recommender systems (e.g. people who liked this bottle of wine, also enjoyed this one).<\/p>\n<p style=\"text-align: center;\">\n<p><strong>Reinforcement learning:<\/strong>\u00a0this type of learning is a blend between supervised and unsupervised learning. It is usually used to solve more complex problems and requires interaction with an environment. Data is provided by the environment and allows the agent to respond and learn. In practice, this ranges from controlling robotic arms to find the most efficient motor combination, to robot navigation where collision avoidance behavior can be learned by negative feedback from bumping into obstacles. Logic games are also well-suited to reinforcement learning, as they are traditionally defined as a sequence of decisions: games such as poker, backgammon and more recently Go with the success of\u00a0<a href=\"http:\/\/bit.ly\/2iJ701Y\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">AlphaGo from Google.<\/a>\u00a0Other applications of reinforcement learning are common in logistics, scheduling, and tactical planning of tasks.<\/p>\n<h2><strong>What can machine learning be used for?<\/strong><\/h2>\n<p>Three stages of machine learning development and their application within a business are to be considered: descriptive, predictive, and prescriptive.<\/p>\n<p>The descriptive stage refers to the recording and analysis of historical data for increased business intelligence. Managers are provided with descriptive information and a better understanding of the results and consequences of past actions and decisions. This process is now routine for most large businesses around the world- for example, reviewing sales records and matching promotional efforts to understand their impact and ROI.<\/p>\n<p>The second stage of applied machine learning is prediction. Gathering data and using it to predict a specific outcome allows for increased reactivity and to make decisions faster and with more accuracy. For example, predicting churn can allow for its prevention. This stage of application is currently being embraced by most businesses.<\/p>\n<p>Yet, the third and most advanced stage of machine learning is already being adopted by existing businesses and pushed forward by newly founded endeavors. Predicting a behavior or outcome is not sufficient when aiming for effective and efficient business practices. Understanding the cause, motive, and context is a prerequisite to optimal decision-making. Concretely, this stage is possible when human and machine combine efforts. Machine learning is used to find meaningful relations and to predict outcomes while data experts serve as translators to make sense of why the relation exists. As such, it becomes possible to prescribe actions with greater precision.<\/p>\n<p>Furthermore, I would add another application of machine learning other than predictive insight: process automation. I\u2019ve provided a more detailed overview and comparison these two concepts\u00a0<a href=\"http:\/\/bit.ly\/2hEiB55\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">here<\/a>.<\/p>\n<p>Here are some examples of what problems machine learning can solve.<\/p>\n<p><strong>Logistics and production<\/strong><\/p>\n<ul>\n<li><a href=\"http:\/\/www.rethinkrobotics.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Rethink Robotics<\/a>\u00a0uses machine learning to train their robotic arms and improve production speeds;<\/li>\n<li>JaybridgeRobotics\u00a0automates industrial grade vehicles for more efficient operations;<\/li>\n<li><a href=\"http:\/\/www.nanotronics.co\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Nanotronics<\/a>\u00a0automates optical microscopes for improved inspections;<\/li>\n<li><a href=\"http:\/\/netflix.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Netflix<\/a>\u00a0and\u00a0<a href=\"http:\/\/www.amazon.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Amazon<\/a>\u00a0optimize resource distribution according to user demand;<\/li>\n<li>Other examples include: predicting ERP\/ERM needs; predicting asset failure &amp; maintenance, improving quality assurance, and increasing production line performance.<\/li>\n<\/ul>\n<p><strong>Sales and marketing<\/strong><\/p>\n<ul>\n<li><a href=\"http:\/\/6sense.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">6sense<\/a>\u00a0predicts which lead is more susceptible to buy and at what time;<\/li>\n<li><a href=\"http:\/\/www.salesforce.com\/products\/einstein\/overview\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Salesforce Einstein<\/a>\u00a0helps anticipate sales opportunities and automate tasks;<\/li>\n<li><a href=\"http:\/\/www.fusemachines.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Fusemachines<\/a>\u00a0automates sales tasks with an AI assistant;<\/li>\n<li><a href=\"http:\/\/www.airpr.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">AirPR<\/a>\u00a0provides insight to increase PR performance;<\/li>\n<li><a href=\"http:\/\/retentionscience.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Retention Science<\/a>\u00a0suggests cross-channel actions to drive engagement;<\/li>\n<li>Other examples include: predicting a customer\u2019s lifetime value, increasing customer segmentation accuracy, detecting customer shopping patterns, and optimizing a user\u2019s in-app experience.<\/li>\n<\/ul>\n<p><strong>Human resources<\/strong><\/p>\n<ul>\n<li><a href=\"http:\/\/www.entelo.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Entelo<\/a>\u00a0helps recruiters identify and qualify candidates;<\/li>\n<li><a href=\"http:\/\/www.hiqlabs.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">hiQ<\/a>\u00a0assists managers with talent management.<\/li>\n<\/ul>\n<p><strong>Finance<\/strong><\/p>\n<ul>\n<li>Cerebellum Capital\u00a0and\u00a0<a href=\"http:\/\/www.sentient.ai\/sentient-investment-management\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Sentient<\/a>\u00a0augment investment management decisions with machine learning powered software;<\/li>\n<li><a href=\"http:\/\/www.dataminr.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Dataminr<\/a>\u00a0can assist with real-time financial decisions by providing early alerts on social trends and breaking news;<\/li>\n<li>Other examples include: detecting fraudulent behavior and predicting stock prices.<\/li>\n<\/ul>\n<p><strong>Healthcare<\/strong><\/p>\n<ul>\n<li><a href=\"http:\/\/www.atomwise.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Atomwise<\/a>\u00a0uses predictive models to reduce medicine production time;<\/li>\n<li><a href=\"http:\/\/deep6analytics.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Deep6 Analytics<\/a>\u00a0identifies eligible patients for clinical trials<\/li>\n<li>Other examples include: diagnosing diseases more accurately, improving personalized care, and assessing health risks.<\/li>\n<\/ul>\n<p>You can find even more examples of machine learning and artificial intelligence and other related resources in an awesome\u00a0<a href=\"http:\/\/bit.ly\/2hRlqwY\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">list<\/a>\u00a0put together by\u00a0<a href=\"http:\/\/bit.ly\/2hwGVph\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Sam DeBrule<\/a>.<\/p>\n<h2><strong>Before you go.<\/strong><\/h2>\n<p>Remember that collaboration is key. AI and machine learning are fascinating but can be tricky at times.<\/p>\n<p>Originally published on <a href=\"https:\/\/blog.arcbees.com\/2016\/12\/29\/a-non-technical-guide-to-understanding-machine-learning\/\" rel=\"noopener\">Arcbees blog<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Most information out there in the process of learning the ins-and-outs of machine learning is technical and aimed at developers or data scientists. I thought an explanation from a non-technical person might be of interest. AI and machine learning are fascinating but can be tricky at times. Machine learning is the branch of AI that explores ways to get computers to improve their performance based on experience. There are many different models that can be used in machine learning but they are typically grouped into three different types of learning.<\/p>\n","protected":false},"author":565,"featured_media":21947,"comment_status":"open","ping_status":"open","sticky":false,"template":"single-post-2.php","format":"standard","meta":{"content-type":"","footnotes":""},"categories":[183],"tags":[92],"ppma_author":[3254],"class_list":["post-1736","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai-ml","tag-machine-learning"],"authors":[{"term_id":3254,"user_id":565,"is_guest":0,"slug":"charles-antoine-richard","display_name":"Charles-Antoine Richard","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","user_url":"","last_name":"Richard","first_name":"Charles-Antoine","job_title":"","description":"Charles-Antoine Richard&nbsp;is Monetization Director at Ubisoft."}],"_links":{"self":[{"href":"https:\/\/www.experfy.com\/blog\/wp-json\/wp\/v2\/posts\/1736","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.experfy.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.experfy.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.experfy.com\/blog\/wp-json\/wp\/v2\/users\/565"}],"replies":[{"embeddable":true,"href":"https:\/\/www.experfy.com\/blog\/wp-json\/wp\/v2\/comments?post=1736"}],"version-history":[{"count":6,"href":"https:\/\/www.experfy.com\/blog\/wp-json\/wp\/v2\/posts\/1736\/revisions"}],"predecessor-version":[{"id":28856,"href":"https:\/\/www.experfy.com\/blog\/wp-json\/wp\/v2\/posts\/1736\/revisions\/28856"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.experfy.com\/blog\/wp-json\/wp\/v2\/media\/21947"}],"wp:attachment":[{"href":"https:\/\/www.experfy.com\/blog\/wp-json\/wp\/v2\/media?parent=1736"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.experfy.com\/blog\/wp-json\/wp\/v2\/categories?post=1736"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.experfy.com\/blog\/wp-json\/wp\/v2\/tags?post=1736"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.experfy.com\/blog\/wp-json\/wp\/v2\/ppma_author?post=1736"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}