{"id":6201,"date":"2019-08-12T09:00:55","date_gmt":"2019-08-12T13:00:55","guid":{"rendered":"https:\/\/blog.brainstation.io\/?p=6201"},"modified":"2020-12-13T22:55:37","modified_gmt":"2020-12-14T03:55:37","slug":"what-machine-learning-is-and-what-it-can-do","status":"publish","type":"post","link":"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do","title":{"rendered":"What is Machine Learning and What does it do?"},"content":{"rendered":"<p><span style=\"font-weight: 400;\">If you work in tech (or are even thinking about it), you\u2019ve probably come across the term \u201cmachine learning.\u201d Google Trends shows that the popularity of this as a search term <\/span><span style=\"font-weight: 400;\">has grown by about 200 percent in the last three years, which indicates a growing interest in machine learning<\/span><span style=\"font-weight: 400;\">&nbsp;\u2013 but what exactly is it? <\/span><\/p>\n<p><span style=\"font-weight: 400;\">We&#8217;ve written about the more specific In this post, we&#8217;ll take a closer look at what is meant by <a href=\"https:\/\/brainstation.io\/course\/machine-learning?utm_source=BSTNblog&amp;utm_medium=blog&amp;utm_campaign=Blog_whatMachineLearningIs\" target=\"_blank\" rel=\"noopener noreferrer\">machine learning<\/a>, and explain why it seems to have such importance to modern businesses.<\/span><\/p>\n<h2><span style=\"font-weight: 400;\">What Is Machine Learning?<\/span><\/h2>\n<p><span style=\"font-weight: 400;\">There is a famous definition by the Computer Scientist Tom M. Mitchell that has often been used, and which we will adopt here. We say that a computer program is <\/span><i><span style=\"font-weight: 400;\">learning <\/span><\/i><span style=\"font-weight: 400;\">how to perform a task if it gets better at performing the task as it accumulates <\/span><i><span style=\"font-weight: 400;\">experience<\/span><\/i><span style=\"font-weight: 400;\">. Computer programs that learn this way are said to fall under the umbrella of machine learning.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It might help to understand this definition by considering programs that do <\/span><i><span style=\"font-weight: 400;\">not<\/span><\/i><span style=\"font-weight: 400;\"> satisfy the definition. An important problem in some areas of math and computer science is the problem of finding the prime factors of a number. If you input the number 1081 into a program that solves this problem, it would output the numbers 23 and 47 because of 1081 = 23 * 47. It\u2019s not too hard to figure out how to write a simple program that solves this problem \u2013 an obvious one simply tries dividing 1081 by all the numbers smaller than 1081. This program accomplishes the task, but it does not <\/span><i><span style=\"font-weight: 400;\">learn<\/span><\/i><span style=\"font-weight: 400;\">: it does not get better at factoring numbers with experience. You can run the program on a million inputs and it will never factor the number 1081 any faster or better than it did the first time you ran it.<\/span><\/p>\n<p>Now, let\u2019s think about a different kind of task: recognizing handwriting. Suppose we wish to write a program that takes as its input an image of a handwritten digit and gives an output digit from 0 to 9. Coming up with a simple solution to this problem is not as straightforward as the integer factoring problem above, but we might be able to come up with some ideas. You might write a program that says something like:<\/p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If the image is an oval, return 0.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If the image is a vertical line, return 1.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If the image is two circles on top of each other, return 8.<\/span><\/li>\n<\/ul>\n<p>The challenge here is that different people write differently. It is not remotely feasible to capture every acceptable variation in even a single digit by these kinds of rules, let alone all 10 digits. Even if you could, this type of solution would not count as machine learning: the rules don\u2019t change or adapt as experience grows.<\/p>\n<p><span style=\"font-weight: 400;\">The machine learning approach attacks the problem in a completely different way. Rather than trying to impose rules from the start, a machine learning algorithm seeks to <\/span><i><span style=\"font-weight: 400;\">discover <\/span><\/i><span style=\"font-weight: 400;\">the rules by looking at examples. In machine learning, instead of trying to come up with rules, we try to come up with data. We gather as many pre-labeled images of digits as we can into what\u2019s called a <\/span><i><span style=\"font-weight: 400;\">training set<\/span><\/i><span style=\"font-weight: 400;\">, which is used to literally train the computer program. We take all the images that we have of ones, show them to the computer, and tell it that they\u2019re ones. And then we do the same with the images of twos, and so on. For each digit, the computer tries to figure out on its own what that digit\u2019s images have in common.<\/span><\/p>\n<p>We&#8217;re hand-waving over the details a little bit, but you can see how this approach would tend to improve with experience, making it fit into our working definition of machine learning. Some people cross their sevens. If the set of images that I start with does not contain any crossed sevens, my resulting program might not be able to recognize a crossed seven as a seven. But as I increase the number of examples that it has to look at, eventually it will end up with some crossed sevens and will learn that sometimes they are crossed. The same would happen with other common variations.<\/p>\n<div id=\"attachment_6204\" style=\"width: 301px\" class=\"wp-caption alignleft\"><a href=\"https:\/\/brainstation.io\/blog\/wp-content\/uploads\/2017\/08\/Screen-Shot-2017-08-24-at-2.10.09-PM.png\"><img aria-describedby=\"caption-attachment-6204\" decoding=\"async\" loading=\"lazy\" class=\"wp-image-6204 size-full\" src=\"https:\/\/brainstation.io\/blog\/wp-content\/uploads\/2017\/08\/Screen-Shot-2017-08-24-at-2.10.09-PM.png\" alt=\"machine learning\" width=\"291\" height=\"238\"><\/a><p id=\"caption-attachment-6204\" class=\"wp-caption-text\">Images of sevens from the MNIST dataset. Source: http:\/\/cs.nyu.edu\/~roweis\/data.html<\/p><\/div>\n<p><span style=\"font-weight: 400;\">It turns out that cleverly designed machine learning programs can become incredibly good at this kind of task. A common introductory project for <a href=\"https:\/\/brainstation.io\/course\/machine-learning\" target=\"_blank\" rel=\"noopener noreferrer\">learning how to do machine learning<\/a> is to perform exactly this task on a well-known dataset of images called <\/span><a href=\"http:\/\/yann.lecun.com\/exdb\/mnist\/\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">the MNIST database<\/span><\/a><span style=\"font-weight: 400;\">. Very simple machine learning algorithms can learn to classify these images correctly with better than 90 percent accuracy, and Researchers have used more advanced machine learning tools to achieve better than 99.7 percent accuracy.<\/span><\/p>\n<h2><span style=\"font-weight: 400;\">How Does Machine Learning Work?<\/span><\/h2>\n<p><span style=\"font-weight: 400;\">Why is the handwriting recognition problem well-suited to a machine learning solution while the integer factoring problem is not? There are a few key differences. <\/span><\/p>\n<p>One is in the complexity of the rules governing the relationship between input and output. The integer factoring problem is very difficult in a certain technical sense, but the relationship between the input and output of the factoring problem is very straightforward: if the numbers output by the program are prime and multiply together to give the input, then you\u2019ve got the right answer. The rules that link images of handwriting to the digits they represent are much more complex and fuzzy and difficult to capture.<\/p>\n<p><span style=\"font-weight: 400;\">A related difference is that in the factoring problem, we are looking for an exact solution, whereas in the handwriting recognition problem, we are satisfied with a very good approximate solution. In fact, an exact solution to the handwriting recognition problem would not be feasible even in theory. Some threes look like fives and some fours look like nines and the only way to tell for sure what the correct label is would be to ask the person who wrote down the digit in the first place. All we can reasonably expect out of a solution to the handwriting recognition is that it is right <\/span><i><span style=\"font-weight: 400;\">most <\/span><\/i><span style=\"font-weight: 400;\">of the time.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Finally, it seems that handwriting recognition is inherently a <\/span><i><span style=\"font-weight: 400;\">statistical<\/span><\/i><span style=\"font-weight: 400;\"> or <\/span><i><span style=\"font-weight: 400;\">probabilistic <\/span><\/i><span style=\"font-weight: 400;\">task. As humans, we don\u2019t actually know with certainty whether we\u2019re looking at a nine or a four. We think that a digit is <\/span><i><span style=\"font-weight: 400;\">probably <\/span><\/i><span style=\"font-weight: 400;\">a nine because it looks more like nines we\u2019ve seen in the past than fours we\u2019ve seen in the past. Most of the time we have a lot of certainty about our guess, but we are still taking a guess. We shouldn\u2019t expect the computer to be able to do any better than that either.<\/span><\/p>\n<h2><span style=\"font-weight: 400;\">When Machine Learning Works&nbsp;<\/span><\/h2>\n<p><span style=\"font-weight: 400;\">Machine learning is well suited to problems that have the characteristics of the handwriting recognition problem \u2013 that is, problems that are highly complex, where approximate solutions will suffice, and that are inherently statistical or probabilistic. Businesses are increasingly discovering that many of their problems have these traits. Consider the problem of flagging fraudulent credit card transactions.<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>Complexity:<\/strong> The rules that identify fraudulent credit card transactions are complex and ever-changing.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>Approximations suffice:<\/strong>&nbsp;We are <\/span><i><span style=\"font-weight: 400;\">flagging<\/span><\/i><span style=\"font-weight: 400;\"> transactions for further review, so it is alright if the program is wrong sometimes.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>Solutions are probabilistic:<\/strong>&nbsp;We are never certain that a transaction is fraudulent until we verify by contacting the customer.<\/span><\/li>\n<\/ul>\n<p>And what do we need to implement a machine learning solution to a business problem like this? Data \u2013 a commodity that modern businesses have in high supply. For these reasons, businesses are discovering that machine learning tools fit quite naturally in their activities and objectives, which is why we are seeing such a dramatic rise in the application of machine learning tools and technologies in the business world.<\/p>\n<p><em>Interested in learning more about machine learning? Check out BrainStation&#8217;s <a href=\"https:\/\/brainstation.io\/course\/machine-learning?utm_source=BSTNblog&amp;utm_medium=blog&amp;utm_campaign=Blog_whatMachineLearningIs\" target=\"_blank\" rel=\"noopener noreferrer\">Machine Learning Certificate Course<\/a>.<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>What does &#8220;machine learning&#8221; really mean? Step inside for a closer look. <\/p>\n","protected":false},"author":7,"featured_media":6221,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[343,1066],"tags":[481,875,332,419,405,512,1027],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v18.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Machine Learning 101: Everything You Need to Know<\/title>\n<meta name=\"description\" content=\"Unsure what it means when you hear about &quot;machine learning&quot;? Find out more about what machine learning is and what it can do for modern businesses.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Machine Learning 101: Everything You Need to Know\" \/>\n<meta property=\"og:description\" content=\"Unsure what it means when you hear about &quot;machine learning&quot;? Find out more about what machine learning is and what it can do for modern businesses.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do\" \/>\n<meta property=\"og:site_name\" content=\"BrainStation\u00ae Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-12T13:00:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-14T03:55:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/d2re7sjnpekmig.cloudfront.net\/prod\/wp-content\/uploads\/2017\/08\/autistic-neural-network-3-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1500\" \/>\n\t<meta property=\"og:image:height\" content=\"670\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"BrainStation\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/brainstation.io\/blog\/#website\",\"url\":\"https:\/\/brainstation.io\/blog\/\",\"name\":\"BrainStation\u00ae Blog\",\"description\":\"The Digital Learning Company\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/brainstation.io\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do#primaryimage\",\"url\":\"https:\/\/d2re7sjnpekmig.cloudfront.net\/prod\/wp-content\/uploads\/2017\/08\/autistic-neural-network-3-1.jpg\",\"contentUrl\":\"https:\/\/d2re7sjnpekmig.cloudfront.net\/prod\/wp-content\/uploads\/2017\/08\/autistic-neural-network-3-1.jpg\",\"width\":1500,\"height\":670,\"caption\":\"machine learning\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do#webpage\",\"url\":\"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do\",\"name\":\"Machine Learning 101: Everything You Need to Know\",\"isPartOf\":{\"@id\":\"https:\/\/brainstation.io\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do#primaryimage\"},\"datePublished\":\"2019-08-12T13:00:55+00:00\",\"dateModified\":\"2020-12-14T03:55:37+00:00\",\"author\":{\"@id\":\"https:\/\/brainstation.io\/blog\/#\/schema\/person\/9f37983a6c4da6cf5dd422481ac8cf11\"},\"description\":\"Unsure what it means when you hear about \\\"machine learning\\\"? Find out more about what machine learning is and what it can do for modern businesses.\",\"breadcrumb\":{\"@id\":\"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/brainstation.io\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is Machine Learning and What does it do?\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/brainstation.io\/blog\/#\/schema\/person\/9f37983a6c4da6cf5dd422481ac8cf11\",\"name\":\"BrainStation\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/brainstation.io\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/80c14b8388838ae1453aec36606b232d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/80c14b8388838ae1453aec36606b232d?s=96&d=mm&r=g\",\"caption\":\"BrainStation\"},\"description\":\"BrainStation is a global leader in digital skills training, empowering businesses and brands to succeed in the digital age. Established in 2012, BrainStation has worked with over 250 instructors from the most innovative companies, developing cutting-edge, real-world digital education that has empowered more than 50,000 professionals and some of the largest corporations in the world.\",\"url\":\"https:\/\/brainstation.io\/blog\/author\/brainstation\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Machine Learning 101: Everything You Need to Know","description":"Unsure what it means when you hear about \"machine learning\"? Find out more about what machine learning is and what it can do for modern businesses.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do","og_locale":"en_US","og_type":"article","og_title":"Machine Learning 101: Everything You Need to Know","og_description":"Unsure what it means when you hear about \"machine learning\"? Find out more about what machine learning is and what it can do for modern businesses.","og_url":"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do","og_site_name":"BrainStation\u00ae Blog","article_published_time":"2019-08-12T13:00:55+00:00","article_modified_time":"2020-12-14T03:55:37+00:00","og_image":[{"width":1500,"height":670,"url":"https:\/\/d2re7sjnpekmig.cloudfront.net\/prod\/wp-content\/uploads\/2017\/08\/autistic-neural-network-3-1.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Written by":"BrainStation","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/brainstation.io\/blog\/#website","url":"https:\/\/brainstation.io\/blog\/","name":"BrainStation\u00ae Blog","description":"The Digital Learning Company","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/brainstation.io\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do#primaryimage","url":"https:\/\/d2re7sjnpekmig.cloudfront.net\/prod\/wp-content\/uploads\/2017\/08\/autistic-neural-network-3-1.jpg","contentUrl":"https:\/\/d2re7sjnpekmig.cloudfront.net\/prod\/wp-content\/uploads\/2017\/08\/autistic-neural-network-3-1.jpg","width":1500,"height":670,"caption":"machine learning"},{"@type":"WebPage","@id":"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do#webpage","url":"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do","name":"Machine Learning 101: Everything You Need to Know","isPartOf":{"@id":"https:\/\/brainstation.io\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do#primaryimage"},"datePublished":"2019-08-12T13:00:55+00:00","dateModified":"2020-12-14T03:55:37+00:00","author":{"@id":"https:\/\/brainstation.io\/blog\/#\/schema\/person\/9f37983a6c4da6cf5dd422481ac8cf11"},"description":"Unsure what it means when you hear about \"machine learning\"? Find out more about what machine learning is and what it can do for modern businesses.","breadcrumb":{"@id":"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/brainstation.io\/blog\/what-machine-learning-is-and-what-it-can-do#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/brainstation.io\/blog"},{"@type":"ListItem","position":2,"name":"What is Machine Learning and What does it do?"}]},{"@type":"Person","@id":"https:\/\/brainstation.io\/blog\/#\/schema\/person\/9f37983a6c4da6cf5dd422481ac8cf11","name":"BrainStation","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/brainstation.io\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/80c14b8388838ae1453aec36606b232d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/80c14b8388838ae1453aec36606b232d?s=96&d=mm&r=g","caption":"BrainStation"},"description":"BrainStation is a global leader in digital skills training, empowering businesses and brands to succeed in the digital age. Established in 2012, BrainStation has worked with over 250 instructors from the most innovative companies, developing cutting-edge, real-world digital education that has empowered more than 50,000 professionals and some of the largest corporations in the world.","url":"https:\/\/brainstation.io\/blog\/author\/brainstation"}]}},"_links":{"self":[{"href":"https:\/\/brainstation.io\/blog\/wp-json\/wp\/v2\/posts\/6201"}],"collection":[{"href":"https:\/\/brainstation.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/brainstation.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/brainstation.io\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/brainstation.io\/blog\/wp-json\/wp\/v2\/comments?post=6201"}],"version-history":[{"count":17,"href":"https:\/\/brainstation.io\/blog\/wp-json\/wp\/v2\/posts\/6201\/revisions"}],"predecessor-version":[{"id":12330,"href":"https:\/\/brainstation.io\/blog\/wp-json\/wp\/v2\/posts\/6201\/revisions\/12330"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/brainstation.io\/blog\/wp-json\/wp\/v2\/media\/6221"}],"wp:attachment":[{"href":"https:\/\/brainstation.io\/blog\/wp-json\/wp\/v2\/media?parent=6201"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/brainstation.io\/blog\/wp-json\/wp\/v2\/categories?post=6201"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/brainstation.io\/blog\/wp-json\/wp\/v2\/tags?post=6201"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}