{"id":315,"date":"2024-11-21T16:04:33","date_gmt":"2024-11-21T16:04:33","guid":{"rendered":"https:\/\/jonayre.uk\/blog\/?p=315"},"modified":"2024-12-12T15:54:16","modified_gmt":"2024-12-12T15:54:16","slug":"understanding-neural-networks-part-3-the-machine-that-teaches-itself","status":"publish","type":"post","link":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/","title":{"rendered":"Understanding neural networks &#8211; Part 4: The machine that teaches itself"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In <a href=\"https:\/\/jonayre.uk\/blog\/2024\/11\/14\/understanding-neural-networks-part-3-teaching-the-machine\/\" target=\"_blank\" rel=\"noopener\" title=\"\">Part 3 &#8211; Teaching the machine<\/a>, I described two important approaches used in the training of artificial neural networks. Both of these approaches involved a certain amount of intervention to point the network towards the required solution. The first, back-propagation was mathematically robust but limited in scope. The second, Hebbian learning, was more aligned to what happens in biological brains, but harder to direct towards a tightly specified outcome.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">As an analogy, you can steer your car to exactly where you want it, or you can design it to steer itself and ride along as a nervous passenger. Either can get you to where you want, but not necessarily by the route you choose.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">However, there is a third way, and something that plays an important part in the learning process in you and me. It\u2019s called competitive learning, and it\u2019s how we learn to group similar things into categories. You could also call it stereotyping. It\u2019s important, because without these groupings, animals would have to deal with every encounter as if it were the first time. Previous experience would mean very little, and we\u2019d struggle to survive.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Survival of the fittest<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">So, what is competitive learning, and what does it do for us? Despite its name, it hasn\u2019t got anything to do with competing with other neural networks. It\u2019s all about the brain competing with itself. One of the biggest differences with this approach is that it can happen without any outside intervention. No desired output is needed and no reward is required. The network just gets on with the process of putting things in boxes.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To perform this magic, we need to build a new type of neural network, known as an auto-associative memory. If you\u2019ve ever heard of a <a href=\"https:\/\/en.wikipedia.org\/wiki\/Hopfield_network\" target=\"_blank\" rel=\"noopener\" title=\"\">Hopfield Network<\/a>, then you\u2019ve heard of at least one type of these specialised machines. Brains are very efficient at using just enough neurons to achieve an outcome, leaving the rest free for further experiences. Auto-associative networks are an attempt to duplicate this.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is where competitive learning comes in. In this type of learning, we don\u2019t care which neurons fire. We just want to make sure only a few fire for each situation, and different ones fire when the situation changes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The winner takes it all<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The way this is achieved is through a winner-takes-all approach. Neurons are connected in such a way that the strongest firing neuron provides positive feedback to its nearest neighbouring neurons and negative feedback to those neurons that are further away. Each input is then connected to all of these neurons, so each one gets a chance to respond to the input pattern based on its initial weights.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The following diagram shows a simplified representation of such a network. Connectivity from all inputs to all neurons, and connectivity from one neuron to all other neurons is shown. Close neighbours are connected with a positive weight and distant neighbours with a negative weight. The graph below shows how connection weight varies with distance for a larger network. Because of the shape of this graph, it is often referred to as a \u201cMexican hat\u201d weight distribution.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"584\" height=\"507\" src=\"https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2024\/11\/Understanding-neural-networks-Part-4_-Self-organisation-and-unsupervised-learning.png\" alt=\"\" class=\"wp-image-317\" style=\"width:838px;height:auto\" srcset=\"https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2024\/11\/Understanding-neural-networks-Part-4_-Self-organisation-and-unsupervised-learning.png 584w, https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2024\/11\/Understanding-neural-networks-Part-4_-Self-organisation-and-unsupervised-learning-300x260.png 300w\" sizes=\"auto, (max-width: 584px) 100vw, 584px\" \/><figcaption class=\"wp-element-caption\">Figure 1: Connection weights from a neuron to its neighbours in an auto-associative network<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">When patterns of inputs are first presented to a network like this, each neuron fires at a different level depending on how closely its weights match the inputs. The neuron that best matches the pattern then \u201crecruits\u201d its nearest neighbours via positive feedback and they start to fire more strongly as well. Meanwhile, neurons further away are forced to fire less strongly due to the negative feedback that they receive from the original neuron and its new recruits.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">As a result, the neurons compete with each other. The strongest groups get even stronger and the weaker groups fade away. Hebbian learning is then used to adjust the weights of the neurons based on their inputs and firing rates. (I discussed Hebbian learning in <a href=\"https:\/\/jonayre.uk\/blog\/2024\/11\/14\/understanding-neural-networks-part-3-teaching-the-machine\/\" target=\"_blank\" rel=\"noopener\" title=\"\">Part 3 &#8211; Teaching the machine<\/a>). This learning approach strengthens the weights that match the input pattern for the neurons that fire the most. Inputs that don\u2019t match the pattern are weakened as a result of the decay factor built into Hebbian learning.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"692\" height=\"348\" src=\"https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2024\/11\/Understanding-neural-networks-Part-4_-Self-organisation-and-unsupervised-learning-1.png\" alt=\"\" class=\"wp-image-318\" style=\"width:838px;height:auto\" srcset=\"https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2024\/11\/Understanding-neural-networks-Part-4_-Self-organisation-and-unsupervised-learning-1.png 692w, https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2024\/11\/Understanding-neural-networks-Part-4_-Self-organisation-and-unsupervised-learning-1-300x151.png 300w\" sizes=\"auto, (max-width: 692px) 100vw, 692px\" \/><figcaption class=\"wp-element-caption\">Figure 2: A simple auto-associative memory before and after training on a single pattern<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">The diagram above shows an example of this in a simple, 16 neuron auto-associative memory. Each circle represents a neuron and the sizes of the circles represent their relative firing rates. Before training, when a pattern is presented, firing rates are varied, and a clear winner is not necessarily obvious (left hand side of diagram). Over time, one winning group emerges and a single neuron dominates (right hand side of diagram).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In the future presentations of this pattern, only this neuron and its immediate neighbours will respond to this particular pattern. When a new pattern is presented that is different to the first, the winning neurons from the first round fire weakly because they have become specialised to one pattern. The rest of the neurons fire at varying levels, and take part in the competition to claim this new pattern.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">A place for everything<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">As more patterns are presented to the network, more of these small neuron groups are created and eventually you have a network that can respond to each pattern by firing only a very small number of neurons. This is known in AI as sparse encoding, and it\u2019s one of the things that makes the biological brain so energy efficient.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">An added advantage of this approach is that similar patterns end up getting represented by neuron groups that are close to each other, and different patterns are separated from one another. The network is even capable of classifying things it has never seen before, simply because they are most like something it has seen. The network has become a classifying machine based solely on the inputs. We, its creators, have not needed to intervene in the process.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In biological brains you can observe this happening. Present a patient with the sound of a barking dog, and a scan will show specific neurons firing. Present the same patient with a piece of orchestral music and very different sets of neurons will fire. It is not unreasonable to suggest that these groups represent your memories.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A side effect of this process is stereotyping. The brain is inherently biased by design, especially with respect to groups it has limited exposure to. I touched on this in a previous blog post, <a href=\"https:\/\/jonayre.uk\/blog\/2022\/12\/02\/ai-washing-and-the-prejudiced-machine\/\" target=\"_blank\" rel=\"noopener\" title=\"\">AI washing and the prejudiced machine<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">A bit of a brain<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">So, that\u2019s auto-associative memory. It allows networks to learn even when there\u2019s no desired output or action, it helps brains to be highly energy efficient, and it could well be how experiences are remembered. No mean feat for such a simple concept.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">However, it has a limitation. This type of network can\u2019t be used to create a problem solving artificial brain on its own, any more than an engine will get you to work. It\u2019s just a specialised component, but it is a rather important one.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It\u2019s also possible that this autoassociative behaviour isn\u2019t just taking place in one part of a biological brain. Experimental observations suggest that this type of competitive learning is happening throughout the brain.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Onwards, fellow Frankensteins!<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">So far, I\u2019ve covered artificial neurons, two types of neural network, and a process for classifying and remembering experience. In the next part, things are going to get biological. It\u2019s time to revisit that simple artificial neuron and make it more sophisticated.\u00a0<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;ll talk a about something known as &#8220;biological plausibility&#8221;, delve a bit deeper into how a real neurons behaves, and explain a model I&#8217;ve developed that&#8217;s a bit more brain-like.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Why? Because the more like a real neuron we can make it, the more chance we have of adding the intelligence to the artificial.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Teaching neural networks is one thing, but what if they could train themselves? Part 4 takes a look at the self-organising network and what it might tell us about our own brains.<\/p>\n","protected":false},"author":1,"featured_media":316,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-315","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-business"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Teaching neural networks is one thing, but what if they could train themselves? Part 4 takes a look at the self-organising network and what it might tell us about our own brains.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Jon Ayre\"\/>\n\t<meta name=\"google-site-verification\" content=\"GNUfbu2X2sx5KHq1VLY1lNoJNPLL14bqZzfm3FE-5co\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_GB\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Jon Ayre - Business, technology and strategic thinking\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Understanding neural networks \u2013 Part 4: The machine that teaches itself - Jon Ayre\" \/>\n\t\t<meta property=\"og:description\" content=\"Teaching neural networks is one thing, but what if they could train themselves? Part 4 takes a look at the self-organising network and what it might tell us about our own brains.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2024\/11\/robot-and-boxes-scaled.jpeg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2024\/11\/robot-and-boxes-scaled.jpeg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t\t<meta property=\"og:image:height\" content=\"1752\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-11-21T16:04:33+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-12-12T15:54:16+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@jon_ayre\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Understanding neural networks \u2013 Part 4: The machine that teaches itself - Jon Ayre\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Teaching neural networks is one thing, but what if they could train themselves? Part 4 takes a look at the self-organising network and what it might tell us about our own brains.\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@jon_ayre\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2024\/11\/robot-and-boxes-scaled.jpeg\" \/>\n\t\t<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t\t<meta name=\"twitter:data1\" content=\"Jon Ayre\" \/>\n\t\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/2024\\\/11\\\/21\\\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\\\/#blogposting\",\"name\":\"Understanding neural networks \\u2013 Part 4: The machine that teaches itself - Jon Ayre\",\"headline\":\"Understanding neural networks &#8211; Part 4: The machine that teaches itself\",\"author\":{\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/robot-and-boxes-scaled.jpeg\",\"width\":2560,\"height\":1752,\"caption\":\"A cute robot stands over a row of coloured boxes. In each box is a small toy animal or shape.\"},\"datePublished\":\"2024-11-21T16:04:33+00:00\",\"dateModified\":\"2024-12-12T15:54:16+00:00\",\"inLanguage\":\"en-GB\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/2024\\\/11\\\/21\\\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/2024\\\/11\\\/21\\\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\\\/#webpage\"},\"articleSection\":\"Business\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/2024\\\/11\\\/21\\\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/jonayre.uk\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/category\\\/business\\\/#listItem\",\"name\":\"Business\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/category\\\/business\\\/#listItem\",\"position\":2,\"name\":\"Business\",\"item\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/category\\\/business\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/2024\\\/11\\\/21\\\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\\\/#listItem\",\"name\":\"Understanding neural networks &#8211; Part 4: The machine that teaches itself\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/2024\\\/11\\\/21\\\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\\\/#listItem\",\"position\":3,\"name\":\"Understanding neural networks &#8211; Part 4: The machine that teaches itself\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/category\\\/business\\\/#listItem\",\"name\":\"Business\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/#person\",\"name\":\"Jon Ayre\",\"image\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/DSC_1812-edited-scaled.jpg\",\"sameAs\":[\"https:\\\/\\\/twitter.com\\\/jon_ayre\",\"https:\\\/\\\/linkedin.com\\\/in\\\/jonayre\",\"https:\\\/\\\/bsky.app\\\/profile\\\/jonayre.uk\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/author\\\/admin\\\/#author\",\"url\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/author\\\/admin\\\/\",\"name\":\"Jon Ayre\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/2024\\\/11\\\/21\\\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7c8576be04234ab90e9cee63987dbd6b60d3dd7a1838950fe4c09088e0fb0f82?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Jon Ayre\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/2024\\\/11\\\/21\\\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\\\/#webpage\",\"url\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/2024\\\/11\\\/21\\\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\\\/\",\"name\":\"Understanding neural networks \\u2013 Part 4: The machine that teaches itself - Jon Ayre\",\"description\":\"Teaching neural networks is one thing, but what if they could train themselves? Part 4 takes a look at the self-organising network and what it might tell us about our own brains.\",\"inLanguage\":\"en-GB\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/2024\\\/11\\\/21\\\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/author\\\/admin\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/robot-and-boxes-scaled.jpeg\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/2024\\\/11\\\/21\\\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\\\/#mainImage\",\"width\":2560,\"height\":1752,\"caption\":\"A cute robot stands over a row of coloured boxes. In each box is a small toy animal or shape.\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/2024\\\/11\\\/21\\\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\\\/#mainImage\"},\"datePublished\":\"2024-11-21T16:04:33+00:00\",\"dateModified\":\"2024-12-12T15:54:16+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/\",\"name\":\"Jon Ayre\",\"description\":\"Business, technology and strategic thinking\",\"inLanguage\":\"en-GB\",\"publisher\":{\"@id\":\"https:\\\/\\\/jonayre.uk\\\/blog\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Understanding neural networks \u2013 Part 4: The machine that teaches itself - Jon Ayre","description":"Teaching neural networks is one thing, but what if they could train themselves? Part 4 takes a look at the self-organising network and what it might tell us about our own brains.","canonical_url":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"GNUfbu2X2sx5KHq1VLY1lNoJNPLL14bqZzfm3FE-5co","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/#blogposting","name":"Understanding neural networks \u2013 Part 4: The machine that teaches itself - Jon Ayre","headline":"Understanding neural networks &#8211; Part 4: The machine that teaches itself","author":{"@id":"https:\/\/jonayre.uk\/blog\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/jonayre.uk\/blog\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2024\/11\/robot-and-boxes-scaled.jpeg","width":2560,"height":1752,"caption":"A cute robot stands over a row of coloured boxes. In each box is a small toy animal or shape."},"datePublished":"2024-11-21T16:04:33+00:00","dateModified":"2024-12-12T15:54:16+00:00","inLanguage":"en-GB","mainEntityOfPage":{"@id":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/#webpage"},"isPartOf":{"@id":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/#webpage"},"articleSection":"Business"},{"@type":"BreadcrumbList","@id":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/jonayre.uk\/blog#listItem","position":1,"name":"Home","item":"https:\/\/jonayre.uk\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/jonayre.uk\/blog\/category\/business\/#listItem","name":"Business"}},{"@type":"ListItem","@id":"https:\/\/jonayre.uk\/blog\/category\/business\/#listItem","position":2,"name":"Business","item":"https:\/\/jonayre.uk\/blog\/category\/business\/","nextItem":{"@type":"ListItem","@id":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/#listItem","name":"Understanding neural networks &#8211; Part 4: The machine that teaches itself"},"previousItem":{"@type":"ListItem","@id":"https:\/\/jonayre.uk\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/#listItem","position":3,"name":"Understanding neural networks &#8211; Part 4: The machine that teaches itself","previousItem":{"@type":"ListItem","@id":"https:\/\/jonayre.uk\/blog\/category\/business\/#listItem","name":"Business"}}]},{"@type":"Person","@id":"https:\/\/jonayre.uk\/blog\/#person","name":"Jon Ayre","image":"https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2022\/08\/DSC_1812-edited-scaled.jpg","sameAs":["https:\/\/twitter.com\/jon_ayre","https:\/\/linkedin.com\/in\/jonayre","https:\/\/bsky.app\/profile\/jonayre.uk"]},{"@type":"Person","@id":"https:\/\/jonayre.uk\/blog\/author\/admin\/#author","url":"https:\/\/jonayre.uk\/blog\/author\/admin\/","name":"Jon Ayre","image":{"@type":"ImageObject","@id":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/7c8576be04234ab90e9cee63987dbd6b60d3dd7a1838950fe4c09088e0fb0f82?s=96&d=mm&r=g","width":96,"height":96,"caption":"Jon Ayre"}},{"@type":"WebPage","@id":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/#webpage","url":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/","name":"Understanding neural networks \u2013 Part 4: The machine that teaches itself - Jon Ayre","description":"Teaching neural networks is one thing, but what if they could train themselves? Part 4 takes a look at the self-organising network and what it might tell us about our own brains.","inLanguage":"en-GB","isPartOf":{"@id":"https:\/\/jonayre.uk\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/#breadcrumblist"},"author":{"@id":"https:\/\/jonayre.uk\/blog\/author\/admin\/#author"},"creator":{"@id":"https:\/\/jonayre.uk\/blog\/author\/admin\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2024\/11\/robot-and-boxes-scaled.jpeg","@id":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/#mainImage","width":2560,"height":1752,"caption":"A cute robot stands over a row of coloured boxes. In each box is a small toy animal or shape."},"primaryImageOfPage":{"@id":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/#mainImage"},"datePublished":"2024-11-21T16:04:33+00:00","dateModified":"2024-12-12T15:54:16+00:00"},{"@type":"WebSite","@id":"https:\/\/jonayre.uk\/blog\/#website","url":"https:\/\/jonayre.uk\/blog\/","name":"Jon Ayre","description":"Business, technology and strategic thinking","inLanguage":"en-GB","publisher":{"@id":"https:\/\/jonayre.uk\/blog\/#person"}}]},"og:locale":"en_GB","og:site_name":"Jon Ayre - Business, technology and strategic thinking","og:type":"article","og:title":"Understanding neural networks \u2013 Part 4: The machine that teaches itself - Jon Ayre","og:description":"Teaching neural networks is one thing, but what if they could train themselves? Part 4 takes a look at the self-organising network and what it might tell us about our own brains.","og:url":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/","og:image":"https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2024\/11\/robot-and-boxes-scaled.jpeg","og:image:secure_url":"https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2024\/11\/robot-and-boxes-scaled.jpeg","og:image:width":2560,"og:image:height":1752,"article:published_time":"2024-11-21T16:04:33+00:00","article:modified_time":"2024-12-12T15:54:16+00:00","twitter:card":"summary","twitter:site":"@jon_ayre","twitter:title":"Understanding neural networks \u2013 Part 4: The machine that teaches itself - Jon Ayre","twitter:description":"Teaching neural networks is one thing, but what if they could train themselves? Part 4 takes a look at the self-organising network and what it might tell us about our own brains.","twitter:creator":"@jon_ayre","twitter:image":"https:\/\/jonayre.uk\/blog\/wp-content\/uploads\/2024\/11\/robot-and-boxes-scaled.jpeg","twitter:label1":"Written by","twitter:data1":"Jon Ayre","twitter:label2":"Est. reading time","twitter:data2":"7 minutes"},"aioseo_meta_data":{"post_id":"315","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-11-21 16:01:48","updated":"2025-11-10 07:47:01","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/jonayre.uk\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/jonayre.uk\/blog\/category\/business\/\" title=\"Business\">Business<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tUnderstanding neural networks \u2013 Part 4: The machine that teaches itself\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/jonayre.uk\/blog"},{"label":"Business","link":"https:\/\/jonayre.uk\/blog\/category\/business\/"},{"label":"Understanding neural networks &#8211; Part 4: The machine that teaches itself","link":"https:\/\/jonayre.uk\/blog\/2024\/11\/21\/understanding-neural-networks-part-3-the-machine-that-teaches-itself\/"}],"_links":{"self":[{"href":"https:\/\/jonayre.uk\/blog\/wp-json\/wp\/v2\/posts\/315","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jonayre.uk\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jonayre.uk\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jonayre.uk\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jonayre.uk\/blog\/wp-json\/wp\/v2\/comments?post=315"}],"version-history":[{"count":4,"href":"https:\/\/jonayre.uk\/blog\/wp-json\/wp\/v2\/posts\/315\/revisions"}],"predecessor-version":[{"id":325,"href":"https:\/\/jonayre.uk\/blog\/wp-json\/wp\/v2\/posts\/315\/revisions\/325"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/jonayre.uk\/blog\/wp-json\/wp\/v2\/media\/316"}],"wp:attachment":[{"href":"https:\/\/jonayre.uk\/blog\/wp-json\/wp\/v2\/media?parent=315"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jonayre.uk\/blog\/wp-json\/wp\/v2\/categories?post=315"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jonayre.uk\/blog\/wp-json\/wp\/v2\/tags?post=315"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}