{"id":37420,"date":"2021-08-17T10:30:00","date_gmt":"2021-08-17T07:30:00","guid":{"rendered":"https:\/\/forklog.com\/en\/?p=37420"},"modified":"2025-08-29T16:49:51","modified_gmt":"2025-08-29T13:49:51","slug":"what-is-machine-learning","status":"publish","type":"post","link":"https:\/\/forklog.com\/en\/what-is-machine-learning\/","title":{"rendered":"What is machine learning?"},"content":{"rendered":"<div class=\"wp-block-text-wrappers-cards single_card\">\n<h2 class=\"card_label\"><strong>What is machine learning?<\/strong><\/h2>\n<p>Machine learning (ML) is a branch of artificial intelligence that addresses tasks not through explicit instructions but by finding patterns in data after training an algorithm on many examples.<\/p>\n<p>Such algorithms can decide whether a fruit in a photo is a banana or an apple, detect pedestrians crossing in front of a self-driving car, filter spam in email inboxes and generate subtitles for YouTube videos.<\/p>\n<p>The key difference from traditional programming is that a developer does not write rigid rules to tell a system how to distinguish a banana from an apple. Instead, they build a model that learns to tell fruits apart from a large volume of data\u2014in this case, vast collections of images of bananas and apples.<\/p>\n<\/div>\n<div class=\"wp-block-text-wrappers-cards single_card\">\n<h2 class=\"card_label\"><strong>How does machine learning differ from artificial intelligence?<\/strong><\/h2>\n<p>Machine learning is one of the methods used to build artificial intelligence (AI).<\/p>\n<p>Alongside it are other approaches for creating AI systems\u2014for example, <a href=\"https:\/\/ru.wikipedia.org\/wiki\/%D0%AD%D0%B2%D0%BE%D0%BB%D1%8E%D1%86%D0%B8%D0%BE%D0%BD%D0%BD%D1%8B%D0%B5_%D0%B0%D0%BB%D0%B3%D0%BE%D1%80%D0%B8%D1%82%D0%BC%D1%8B\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">evolutionary algorithms<\/a> that model natural selection, and <a href=\"https:\/\/ru.wikipedia.org\/wiki\/%D0%AD%D0%BA%D1%81%D0%BF%D0%B5%D1%80%D1%82%D0%BD%D0%B0%D1%8F_%D1%81%D0%B8%D1%81%D1%82%D0%B5%D0%BC%D0%B0\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">expert systems<\/a>, in which computers are programmed with rules that mimic a human expert in a specific domain\u2014such as an aircraft\u2019s autopilot.<\/p>\n<\/div>\n<div class=\"wp-block-text-wrappers-cards single_card\">\n<h2 class=\"card_label\"><strong>What types of machine learning exist?<\/strong><\/h2>\n<p>Several types of machine learning are commonly distinguished. Today the most popular are:<\/p>\n<ul class=\"wp-block-list\">\n<li>supervised learning;\u00a0<\/li>\n<li>unsupervised learning;<\/li>\n<li>reinforcement learning.<\/li>\n<\/ul>\n<\/div>\n<div class=\"wp-block-text-wrappers-cards single_card #supervised-learning\">\n<h2 class=\"card_label\"><strong>What is supervised learning?<\/strong><\/h2>\n<p>This method teaches a system to find patterns from labelled examples. Typically, an engineer oversees the entire training process.<\/p>\n<p>During training the system is fed vast amounts of labelled data\u2014for instance, images of fruit with annotations indicating bananas and apples. Given enough examples, it learns to recognise clusters of pixels and shapes associated with each object and, in time, can identify them in photos with high accuracy.<\/p>\n<p>Building such algorithms requires huge volumes of labelled data. Some systems need millions of examples to perform adequately.<\/p>\n<p>As a result, some datasets have grown enormous. For example, Google Open Images<a href=\"https:\/\/opensource.google\/projects\/open-images-dataset\" target=\"_blank\" rel=\"noreferrer noopener nofollow\"> contains<\/a> about 9m images, <a href=\"https:\/\/research.google.com\/youtube8m\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">YouTube-8M<\/a> has 6m labelled videos, and one of the earliest databases of this kind\u2014ImageNet<a href=\"https:\/\/www.image-net.org\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\"> \u2014 has<\/a> more than 14m images sorted into categories.<\/p>\n<p>And the ceiling keeps rising. In 2019 Facebook compiled 3.5bn public Instagram photos, using each image\u2019s hashtags as labels. <a href=\"https:\/\/ai.facebook.com\/blog\/billion-scale-semi-supervised-learning\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Using one billion of these photos<\/a> to train an object-recognition system produced a record ImageNet accuracy of 85.4%.<\/p>\n<\/div>\n<div class=\"wp-block-text-wrappers-cards single_card\">\n<h2 class=\"card_label\"><strong>What is unsupervised learning?<\/strong><\/h2>\n<p>Unsupervised-learning algorithms look for similarities in inputs and split them into categories. As a rule, such models are trained without human intervention.<\/p>\n<p>For example, Airbnb\u2019s algorithms cluster homes available for rent by neighbourhood, and Google News compiles daily bundles of articles on similar topics.<\/p>\n<p>Unsupervised algorithms are not designed to pick out a predetermined class. They simply search for information that can be grouped by similarity or flagged as anomalous.<\/p>\n<\/div>\n<div class=\"wp-block-text-wrappers-cards single_card\">\n<h2 class=\"card_label\"><strong>What is reinforcement learning?<\/strong><\/h2>\n<p>This approach trains AI agents to interact with an environment on their own.<\/p>\n<p>The simplest way to grasp reinforcement learning is to imagine someone playing a video game for the first time, learning the rules as they go. By observing the relationship between button presses, on-screen results and the score, the player\u2019s performance improves level by level.<\/p>\n<p>In 2013 DeepMind developed a deep reinforcement-learning algorithm that <a href=\"https:\/\/deepmind.com\/research\/publications\/2019\/playing-atari-deep-reinforcement-learning\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">outperformed humans across a range of classic video games<\/a>. The system ingests pixels from each game, infers information about state (for example, distances between on-screen objects) and explores how control inputs affect the game and the score.<\/p>\n<p>Over many play cycles, the system builds a model of which actions maximise the score and yield rewards.<\/p>\n<p>Another prominent example of reinforcement learning is AlphaGo, developed by the same DeepMind. In 2016 the program <a href=\"https:\/\/nplus1.ru\/news\/2016\/03\/15\/flaw-victory\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">defeated<\/a> professional Go player Lee Sedol 4\u20131. The algorithm did not compute every possible continuation.<\/p>\n<p>Researchers had long shown that the number of legal positions in the game is greater <a href=\"https:\/\/tromp.github.io\/go\/legal.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">than atoms in the observable Universe<\/a>. Instead, AlphaGo assessed context and adapted to changing conditions.<\/p>\n<\/div>\n<div class=\"wp-block-text-wrappers-cards single_card\">\n<h2 class=\"card_label\"><strong>How are machine-learning models evaluated?<\/strong><\/h2>\n<p>After training, a model is evaluated on data that were not used during training.<\/p>\n<p>Roughly 60% of a dataset is used to develop the algorithm. A further 20% is set aside to validate predictions and tune auxiliary parameters that optimise the model\u2019s outputs. This fine-tuning aims to increase accuracy when the model sees new data.<\/p>\n<p>The remaining 20% is used to test the trained, tuned model to verify how accurate its predictions are on previously unseen information.<\/p>\n<\/div>\n<div class=\"wp-block-text-wrappers-cards single_card\">\n<h2 class=\"card_label\"><strong>What is driving machine learning\u2019s popularity?<\/strong><\/h2>\n<p>Though not new, machine learning has seen a surge of interest in recent years.<\/p>\n<p>A series of breakthroughs has pushed accuracy records in fields such as natural-language processing and computer vision. Two factors made this possible: vast training datasets and the availability of massive parallel compute via modern graphics processors.<\/p>\n<p>Entire cloud clusters dedicated to ML have emerged. Today anyone can turn to the likes of Amazon, Google and Microsoft to build their own models.<\/p>\n<p>As ML\u2019s popularity has grown, tech giants have built specialised hardware for training and running models. Google, for example, has developed tensor processing units (TPUs) that accelerate training.<\/p>\n<p>In 2021 the company unveiled the fourth generation of the chip to bolster Google\u2019s cloud infrastructure. According to its designers, a cluster of 4,096 TPUv4s can deliver more than one <span data-descr=\"FLOPS is a unit of computer performance that shows how many floating\u2011point operations per second a computing system performs\" class=\"old_tooltip\">exaflops<\/span> of performance.<\/p>\n<p>ML workloads are increasingly executed on consumer phones and PCs, not only in cloud data centres. In 2017 Apple <a href=\"https:\/\/mashable.com\/article\/inside-apple-a11-bionic-and-silicon-team\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">introduced<\/a> the iPhone X with an A11 Bionic processor featuring a dedicated ML chip. Each year the company has improved the processor, enabling demanding algorithms to run on mobile devices. Google likewise has pushed ML on mobile. In summer 2021 the company <a href=\"https:\/\/android-developers.googleblog.com\/2021\/07\/announcing-androids-updateable-fully.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">announced<\/a> Android\u2019s updateable ML platform and added TensorFlow Lite to Play services. According to the developers, on-device processing reduces latency, uses the battery more efficiently and enables features that do not require a network connection.<\/p>\n<\/div>\n<div class=\"wp-block-text-wrappers-cards single_card\">\n<h2 class=\"card_label\"><strong>What is machine learning used for?<\/strong><\/h2>\n<p>ML systems are now embedded everywhere and are a cornerstone of the modern internet.<\/p>\n<p>Every Google search query triggers several ML models at once: text recognition, personalised ranking and more. Gmail\u2019s spam filters likewise spot fraudulent messages.<\/p>\n<p>Recommendation engines in online shops can predict what you might buy next, or which film you will like on Netflix.<\/p>\n<p>Among the most visible everyday applications are virtual assistants such as Apple\u2019s Siri, Amazon\u2019s Alexa and Google Assistant. Each relies heavily on ML for speech recognition and natural-language understanding, and they require large knowledge bases to answer queries.<\/p>\n<p>ML finds uses across many industries, including:<\/p>\n<ul class=\"wp-block-list\">\n<li>computer vision for self-driving cars, drones and delivery robots;<\/li>\n<li>natural-language processing for chatbots and virtual assistants;<\/li>\n<li>face recognition;\u00a0<\/li>\n<li>tumour detection in X-ray images;\u00a0<\/li>\n<li>predictive maintenance of infrastructure by analysing data from Internet-of-Things sensors.<\/li>\n<\/ul>\n<p>And that list is far from exhaustive.<\/p>\n<\/div>\n<div class=\"wp-block-text-wrappers-cards single_card\">\n<h2 class=\"card_label\"><strong>Are machine-learning models objective?<\/strong><\/h2>\n<p>The quality and quantity of training data shape what systems are good at. Researchers have grown increasingly concerned about how ML codifies human biases and social inequalities reflected in training data.<\/p>\n<p>In 2016 Rachel Tatman, a National Science Foundation fellow in the University of Washington\u2019s linguistics department, <a href=\"https:\/\/makingnoiseandhearingthings.com\/2016\/07\/12\/googles-speech-recognition-has-a-gender-bias\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">found<\/a> that Google\u2019s speech-recognition system worked better on male voices than on female ones when auto-generating YouTube captions. She linked the finding to \u201cimbalanced training sets\u201d dominated by male speakers.<\/p>\n<p>Face-recognition systems struggle to identify women and people with darker skin tones. Questions over the ethics of deploying such potentially biased systems in policing led big tech firms to pause sales to law enforcement.<\/p>\n<p>In June 2020 Amazon <a href=\"https:\/\/www.cnbc.com\/2020\/06\/10\/amazon-bans-police-use-of-facial-recognition-technology-for-one-year.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">banned<\/a> US police from using its facial-recognition software amid protests against police brutality. A year later the company extended the moratorium indefinitely.<\/p>\n<p>In 2018 Amazon also <a href=\"https:\/\/www.bbc.co.uk\/news\/technology-45809919\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">abandoned<\/a> a machine-learning-based hiring tool that favoured male candidates.<\/p>\n<p>As ML moves into new areas, such as assisting disease diagnosis, the risk that systems deliver better services\u2014or fairer treatment\u2014to some groups than others is an ever more serious concern.<\/p>\n<p>Research into ways of reducing bias in self-learning systems continues.<\/p>\n<div class=\"wp-block-text-wrappers-keypoints article_keypoints\">\n<p><strong>Subscribe to ForkLog updates on Telegram: <a href=\"https:\/\/t.me\/forklogAI\" target=\"_blank\" rel=\"noreferrer noopener\">ForkLog AI<\/a> \u2014 all the news from the world of AI!<\/strong><\/p>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Machine learning (ML) is a branch of artificial intelligence that solves problems not by explicit instructions but by finding patterns in data after training on many examples.<\/p>\n","protected":false},"author":1,"featured_media":37421,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"select":"1","news_style_id":"1","cryptorium_level":"1","_short_excerpt_text":"","creation_source":"","_metatest_mainpost_news_update":false,"footnotes":""},"categories":[2113],"tags":[2130,438],"class_list":["post-37420","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cryptorium","tag-101-artificial-intelligence","tag-artificial-intelligence"],"aioseo_notices":[],"amp_enabled":true,"views":"42","promo_type":"1","layout_type":"1","short_excerpt":"","is_update":"","_links":{"self":[{"href":"https:\/\/forklog.com\/en\/wp-json\/wp\/v2\/posts\/37420","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/forklog.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/forklog.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/forklog.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/forklog.com\/en\/wp-json\/wp\/v2\/comments?post=37420"}],"version-history":[{"count":1,"href":"https:\/\/forklog.com\/en\/wp-json\/wp\/v2\/posts\/37420\/revisions"}],"predecessor-version":[{"id":37422,"href":"https:\/\/forklog.com\/en\/wp-json\/wp\/v2\/posts\/37420\/revisions\/37422"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/forklog.com\/en\/wp-json\/wp\/v2\/media\/37421"}],"wp:attachment":[{"href":"https:\/\/forklog.com\/en\/wp-json\/wp\/v2\/media?parent=37420"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/forklog.com\/en\/wp-json\/wp\/v2\/categories?post=37420"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/forklog.com\/en\/wp-json\/wp\/v2\/tags?post=37420"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}