{"id":2337,"date":"2022-11-10T15:15:57","date_gmt":"2022-11-10T14:15:57","guid":{"rendered":"https:\/\/nicholasidoko.com\/blog\/?p=2337"},"modified":"2023-03-23T17:41:01","modified_gmt":"2023-03-23T16:41:01","slug":"the-basics-of-artificial-neural-networks-anns","status":"publish","type":"post","link":"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/","title":{"rendered":"The Basics of Artificial Neural Networks (ANNs)"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"612\" height=\"344\" src=\"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2022\/11\/image-19.png\" alt=\"Artificial Neural Networks\" class=\"wp-image-2340\" srcset=\"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2022\/11\/image-19.png 612w, https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2022\/11\/image-19-300x169.png 300w\" sizes=\"(max-width: 612px) 100vw, 612px\" \/><\/figure>\n\n\n\n<p>Your brain is far more powerful than any computer you can find at controlling everything you do. This intricate organ continuously analyses <a href=\"https:\/\/nicholasidoko.com\/blog\/2022\/11\/08\/structured-vs-unstructured-data-what-are-the-differences\/\" target=\"_blank\" rel=\"noreferrer noopener\">data<\/a> while you sleep and uses neurons to deliver messages. To develop a digital replica, scientists are working to better understand the brain. But can computers perform the same tasks as our brains can? <\/p>\n\n\n\n<p>We need to develop something called an artificial neural network, which connects digital neurons into a sophisticated net that resembles the structure of the brain, to enable computers to perform these tasks. The greatest universal language\u2014mathematics\u2014is what we need to create artificial neural networks.<\/p>\n\n\n\n<p>In the domains of <a href=\"https:\/\/nicholasidoko.com\/blog\/2022\/10\/24\/machine-learning-vs-artificial-intelligence\/\" target=\"_blank\" rel=\"noreferrer noopener\">AI, machine learning<\/a>, and deep learning, neural networks enable computer programmes to identify patterns and resolve common issues by mimicking the behaviour of the human brain.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What&nbsp;is ANN?<\/h2>\n\n\n\n<p>Artificial neural networks (ANNs) are computer programmes with biological influences that mimic how the human brain processes information. ANNs learn (or are trained) through experience rather than through programming, and they learn by identifying patterns and relationships in <a href=\"https:\/\/nicholasidoko.com\/blog\/2022\/11\/08\/what-is-big-data\/\" target=\"_blank\" rel=\"noreferrer noopener\">data<\/a>.<\/p>\n\n\n\n<p>The neural structure, organised into layers, is made up of hundreds of single units, known as artificial neurons or processing elements (PE), coupled by coefficients (weights). The network of connections between neurons is what gives brain calculations their power. Each PE has a single output, a transfer function, and weighted inputs. The transfer functions of a neural network&#8217;s neurons, the learning rule, and the design itself all affect how the network behaves.<\/p>\n\n\n\n<p>In this sense, a neural network is a parameterized system because the weights are the variables that may be changed. The activation of the neuron is the result of the inputs&#8217; weighted sum. To create a single neuron output, the activation signal is transferred through a transfer function. <\/p>\n\n\n\n<p>The network becomes non-linear due to the transfer function. The inter-unit connections are improved during training until the prediction error is minimised and the network gets the required degree of accuracy.<\/p>\n\n\n\n<p>New input data can be sent to the network after training and testing to help it predict the output. The transfer functions of their neurons, the learning rule, and the connection formula may all be used to explain different types of neural networks, and new ones are developed every week.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Basic Structure of ANNs<\/h2>\n\n\n\n<p>The concept behind ANNs is based on the premise that by forming the appropriate connections, silicon and wires may be used to simulate the real neurons and dendrites found in the human brain.<\/p>\n\n\n\n<p>86 billion neurons, or nerve cells, make up the human brain. Axons connect them to a million additional cells. Dendrites absorb input from sensory organs as well as stimuli from the outside environment. Electric impulses are produced by these inputs and quickly pass through the neural network. A neuron has the option to either forward the message to another neuron for handling or to stop doing so.<\/p>\n\n\n\n<p>Numerous nodes make up ANNs, which mimic the biological neurons found in the human brain. The links that connect the neurons allow them to communicate with one another.<\/p>\n\n\n\n<p>The nodes have the ability to take input data and apply straightforward operations to it. Other neurons get the outcome of these operations. Each node&#8217;s output is known as its activation or node value.<\/p>\n\n\n\n<p>Weight is connected to each link. ANNs have the ability to learn, which happens through changing the weight values.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"612\" height=\"287\" src=\"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2022\/11\/image-20.png\" alt=\"\" class=\"wp-image-2341\" srcset=\"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2022\/11\/image-20.png 612w, https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2022\/11\/image-20-300x141.png 300w\" sizes=\"(max-width: 612px) 100vw, 612px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Neural Networks vs. Deep Learning<\/h2>\n\n\n\n<p>It can be misleading because the terms &#8220;<a href=\"https:\/\/nicholasidoko.com\/blog\/2023\/03\/09\/deep-learning-for-beginners-a-comprehensive-guide\/\" target=\"_blank\" rel=\"noreferrer noopener\">deep learning<\/a>&#8221; and &#8220;neural networks&#8221; are frequently used interchangeably in speech. It&#8217;s important to remember that the &#8220;deep&#8221; in deep learning just denotes the number of layers in a neural network. A neural network with more than three layers, including the inputs and outputs, is referred to as a &#8220;deep learning algorithm.&#8221; Simply put, a simple neural network is one that just contains two or three layers.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Types of Neural Networks<\/h2>\n\n\n\n<p>Diverse types of neural networks with different applications can be categorised. Although not an exhaustive list, the following would serve as an example of the most typical neural network types you&#8217;ll see for its most typical use cases:<\/p>\n\n\n\n<p>We&#8217;ve mostly been concentrating on feedforward neural networks, or multi-layer perceptrons (MLPs), in this post. They consist of an output layer, one or more hidden layers, and an input layer. Because most real-world issues are nonlinear, sigmoid neurons, not perceptrons, are used in these neural networks, which are also sometimes referred to as MLPs. These models are the basis for computer vision, <a href=\"https:\/\/nicholasidoko.com\/blog\/2022\/11\/11\/what-is-natural-language-processing-nlp\/\" target=\"_blank\" rel=\"noreferrer noopener\">natural language processing<\/a>, and other neural networks, and data is typically input into them to train them.<\/p>\n\n\n\n<p>Similar to feedforward networks, convolutional neural networks (CNNs) are used for image recognition, pattern identification, and\/or computer vision. To find patterns in a picture, these networks use ideas from linear algebra, particularly matrix multiplication.<\/p>\n\n\n\n<p>The presence of feedback loops identifies <a href=\"https:\/\/www.ibm.com\/cloud\/learn\/recurrent-neural-networks\" target=\"_blank\" rel=\"noreferrer noopener\">recurrent neural networks (RNNs)<\/a>. When using time-series data to predict future events, such as stock market projections or sales forecasting, these learning algorithms are generally used.<\/p>\n\n\n\n<p>Read more: <em><a href=\"https:\/\/nicholasidoko.com\/blog\/2023\/03\/23\/5-types-of-artificial-neural-networks\/\" target=\"_blank\" rel=\"noreferrer noopener\">5 Types\u00a0of Artificial Neural Networks<\/a><\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Applications of ANNs<\/h2>\n\n\n\n<p>Artificial neural networks are developed to simulate the human brain digitally. Artificial neural networks can be used in a variety of applications, such as data classification, result prediction, and data clustering. The networks can classify a given data set into a predetermined class as they process and learn from the data. They can also be taught to anticipate the predicted outputs from a given input and can detect a specific feature of the data and then classify the data by that special feature.<\/p>\n\n\n\n<p>These networks can be used to create the next generation of computers because they are already being used for <a href=\"https:\/\/nicholasidoko.com\/blog\/2022\/10\/18\/what-is-data-science-and-why-is-it-important\/\" target=\"_blank\" rel=\"noreferrer noopener\">complicated analysis <\/a>in a variety of disciplines, from engineering to medicine.<\/p>\n\n\n\n<p>Google&#8217;s &#8220;watch next&#8221; recommendations for YouTube videos and Google Photos are both powered by a 30-layered neural network. Facebook&#8217;s DeepFace technology, which has a 97% success rate in identifying specific faces, uses artificial neural networks. Additionally, Skype&#8217;s ability to perform real-time translations is powered by an ANN.<\/p>\n\n\n\n<p>The gaming sector already heavily relies on artificial neural networks. They help us identify handwriting, which is helpful in fields like banking. In the area of medicine, artificial neural networks are also capable of many crucial things. They might be utilised to create human body models that would aid physicians in correctly diagnosing ailments in their patients. Furthermore, complicated medical pictures like CT scans may now be interpreted more rapidly and precisely thanks to artificial neural networks.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Neural network-based machines will be able to figure out many abstract issues on their own. From their errors, they will grow. Maybe one day, a device known as a brain-computer interface will allow us to connect people to machines! This would translate mental cues from people into signals that robots could respond to. Maybe in the future, all of our interactions with the environment will be mental.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Before you go\u2026<\/h4>\n\n\n\n<p>Hey, thank you for reading this blog to the end. I hope it was helpful. Let me tell you a little bit about&nbsp;<a href=\"http:\/\/nicholasidoko.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Nicholas Idoko Technologies<\/a>. We help businesses and companies build an online presence by developing web, mobile, desktop and blockchain applications.<\/p>\n\n\n\n<p>As a company, we work with your budget in developing your ideas and projects beautifully and elegantly as well as participate in the growth of your business. We do a lot of freelance work in various sectors such as blockchain, booking,&nbsp;<a href=\"https:\/\/nicholasidoko.com\/blog\/2022\/03\/03\/why-should-you-have-your-own-e-commerce-platform\/\" target=\"_blank\" rel=\"noreferrer noopener\">e-commerce<\/a>, education, online games, voting and payments. Our ability to provide the needed resources to help clients develop their software packages for their targeted audience on schedule is unmatched.<\/p>\n\n\n\n<p>Be sure to&nbsp;<a href=\"https:\/\/nicholasidoko.com\/#contact\" target=\"_blank\" rel=\"noreferrer noopener\">contact us<\/a>&nbsp;if you need our services! We are readily available.<\/p>\n","protected":false},"excerpt":{"rendered":"Your brain is far more powerful than any computer you can find at controlling everything you do. This&hellip;","protected":false},"author":2,"featured_media":2340,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_yoast_wpseo_focuskw":"neural networks","_yoast_wpseo_title":"","_yoast_wpseo_metadesc":"Artificial neural networks (ANNs) are computer programs with biological influences that mimic how the human brain processes information.","_yoast_wpseo_opengraph-title":"","_yoast_wpseo_opengraph-description":"","_yoast_wpseo_twitter-title":"","_yoast_wpseo_twitter-description":"","_lmt_disableupdate":"","_lmt_disable":"","_yoast_wpseo_focuskw_text_input":"","csco_display_header_overlay":false,"csco_singular_sidebar":"","csco_page_header_type":"","footnotes":""},"categories":[5],"tags":[1275,1274,1232],"class_list":{"0":"post-2337","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-technology","8":"tag-ann","9":"tag-artificial-neural-networks","10":"tag-neural-networks","11":"cs-entry"},"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>The Basics of Artificial Neural Networks (ANNs)<\/title>\n<meta name=\"description\" content=\"Artificial neural networks (ANNs) are computer programs with biological influences that mimic how the human brain processes information.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The Basics of Artificial Neural Networks (ANNs)\" \/>\n<meta property=\"og:description\" content=\"Artificial neural networks (ANNs) are computer programs with biological influences that mimic how the human brain processes information.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/\" \/>\n<meta property=\"og:site_name\" content=\"Nicholas Idoko\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-10T14:15:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-23T16:41:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2022\/11\/image-19.png\" \/>\n\t<meta property=\"og:image:width\" content=\"612\" \/>\n\t<meta property=\"og:image:height\" content=\"344\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Olamide Fred\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@nitechnologies\" \/>\n<meta name=\"twitter:site\" content=\"@nitechnologies\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Olamide Fred\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/the-basics-of-artificial-neural-networks-anns\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/the-basics-of-artificial-neural-networks-anns\\\/\"},\"author\":{\"name\":\"Olamide Fred\",\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/#\\\/schema\\\/person\\\/64cd313cdb367339e649cdb5a9cd3037\"},\"headline\":\"The Basics of Artificial Neural Networks (ANNs)\",\"datePublished\":\"2022-11-10T14:15:57+00:00\",\"dateModified\":\"2023-03-23T16:41:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/the-basics-of-artificial-neural-networks-anns\\\/\"},\"wordCount\":1290,\"publisher\":{\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/the-basics-of-artificial-neural-networks-anns\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/image-19.png\",\"keywords\":[\"ANN\",\"Artificial Neural Networks\",\"neural networks\"],\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/the-basics-of-artificial-neural-networks-anns\\\/\",\"url\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/the-basics-of-artificial-neural-networks-anns\\\/\",\"name\":\"The Basics of Artificial Neural Networks (ANNs)\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/the-basics-of-artificial-neural-networks-anns\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/the-basics-of-artificial-neural-networks-anns\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/image-19.png\",\"datePublished\":\"2022-11-10T14:15:57+00:00\",\"dateModified\":\"2023-03-23T16:41:01+00:00\",\"description\":\"Artificial neural networks (ANNs) are computer programs with biological influences that mimic how the human brain processes information.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/the-basics-of-artificial-neural-networks-anns\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/the-basics-of-artificial-neural-networks-anns\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/the-basics-of-artificial-neural-networks-anns\\\/#primaryimage\",\"url\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/image-19.png\",\"contentUrl\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/image-19.png\",\"width\":612,\"height\":344,\"caption\":\"Artificial Neural Networks\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/the-basics-of-artificial-neural-networks-anns\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The Basics of Artificial Neural Networks (ANNs)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/\",\"name\":\"Nicholas Idoko\",\"description\":\"Web, App &amp; Custom Software Company\",\"publisher\":{\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/#organization\"},\"alternateName\":\"Nicholas Idoko\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/#organization\",\"name\":\"Nicholas Idoko\",\"url\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/NIT-logo-1.jpg\",\"contentUrl\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/NIT-logo-1.jpg\",\"width\":600,\"height\":600,\"caption\":\"Nicholas Idoko\"},\"image\":{\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/nitechnologies\",\"https:\\\/\\\/www.instagram.com\\\/nitechnologies\\\/\",\"https:\\\/\\\/youtube.com\\\/channel\\\/UCdJpZYQ5OkreCcmyvkGKboA\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/#\\\/schema\\\/person\\\/64cd313cdb367339e649cdb5a9cd3037\",\"name\":\"Olamide Fred\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/cropped-Olamide-Fred-Ahmadu-96x96.jpeg\",\"url\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/cropped-Olamide-Fred-Ahmadu-96x96.jpeg\",\"contentUrl\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/cropped-Olamide-Fred-Ahmadu-96x96.jpeg\",\"caption\":\"Olamide Fred\"},\"sameAs\":[\"https:\\\/\\\/nicholasidoko.com\"],\"url\":\"https:\\\/\\\/nicholasidoko.com\\\/blog\\\/author\\\/olamide\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The Basics of Artificial Neural Networks (ANNs)","description":"Artificial neural networks (ANNs) are computer programs with biological influences that mimic how the human brain processes information.","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:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/","og_locale":"en_US","og_type":"article","og_title":"The Basics of Artificial Neural Networks (ANNs)","og_description":"Artificial neural networks (ANNs) are computer programs with biological influences that mimic how the human brain processes information.","og_url":"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/","og_site_name":"Nicholas Idoko","article_published_time":"2022-11-10T14:15:57+00:00","article_modified_time":"2023-03-23T16:41:01+00:00","og_image":[{"width":612,"height":344,"url":"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2022\/11\/image-19.png","type":"image\/png"}],"author":"Olamide Fred","twitter_card":"summary_large_image","twitter_creator":"@nitechnologies","twitter_site":"@nitechnologies","twitter_misc":{"Written by":"Olamide Fred","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/#article","isPartOf":{"@id":"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/"},"author":{"name":"Olamide Fred","@id":"https:\/\/nicholasidoko.com\/blog\/#\/schema\/person\/64cd313cdb367339e649cdb5a9cd3037"},"headline":"The Basics of Artificial Neural Networks (ANNs)","datePublished":"2022-11-10T14:15:57+00:00","dateModified":"2023-03-23T16:41:01+00:00","mainEntityOfPage":{"@id":"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/"},"wordCount":1290,"publisher":{"@id":"https:\/\/nicholasidoko.com\/blog\/#organization"},"image":{"@id":"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/#primaryimage"},"thumbnailUrl":"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2022\/11\/image-19.png","keywords":["ANN","Artificial Neural Networks","neural networks"],"articleSection":["Technology"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/","url":"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/","name":"The Basics of Artificial Neural Networks (ANNs)","isPartOf":{"@id":"https:\/\/nicholasidoko.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/#primaryimage"},"image":{"@id":"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/#primaryimage"},"thumbnailUrl":"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2022\/11\/image-19.png","datePublished":"2022-11-10T14:15:57+00:00","dateModified":"2023-03-23T16:41:01+00:00","description":"Artificial neural networks (ANNs) are computer programs with biological influences that mimic how the human brain processes information.","breadcrumb":{"@id":"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/#primaryimage","url":"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2022\/11\/image-19.png","contentUrl":"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2022\/11\/image-19.png","width":612,"height":344,"caption":"Artificial Neural Networks"},{"@type":"BreadcrumbList","@id":"https:\/\/nicholasidoko.com\/blog\/the-basics-of-artificial-neural-networks-anns\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/nicholasidoko.com\/blog\/"},{"@type":"ListItem","position":2,"name":"The Basics of Artificial Neural Networks (ANNs)"}]},{"@type":"WebSite","@id":"https:\/\/nicholasidoko.com\/blog\/#website","url":"https:\/\/nicholasidoko.com\/blog\/","name":"Nicholas Idoko","description":"Web, App &amp; Custom Software Company","publisher":{"@id":"https:\/\/nicholasidoko.com\/blog\/#organization"},"alternateName":"Nicholas Idoko","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nicholasidoko.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/nicholasidoko.com\/blog\/#organization","name":"Nicholas Idoko","url":"https:\/\/nicholasidoko.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/nicholasidoko.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2022\/03\/NIT-logo-1.jpg","contentUrl":"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2022\/03\/NIT-logo-1.jpg","width":600,"height":600,"caption":"Nicholas Idoko"},"image":{"@id":"https:\/\/nicholasidoko.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/nitechnologies","https:\/\/www.instagram.com\/nitechnologies\/","https:\/\/youtube.com\/channel\/UCdJpZYQ5OkreCcmyvkGKboA"]},{"@type":"Person","@id":"https:\/\/nicholasidoko.com\/blog\/#\/schema\/person\/64cd313cdb367339e649cdb5a9cd3037","name":"Olamide Fred","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2023\/01\/cropped-Olamide-Fred-Ahmadu-96x96.jpeg","url":"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2023\/01\/cropped-Olamide-Fred-Ahmadu-96x96.jpeg","contentUrl":"https:\/\/nicholasidoko.com\/blog\/wp-content\/uploads\/2023\/01\/cropped-Olamide-Fred-Ahmadu-96x96.jpeg","caption":"Olamide Fred"},"sameAs":["https:\/\/nicholasidoko.com"],"url":"https:\/\/nicholasidoko.com\/blog\/author\/olamide\/"}]}},"modified_by":"Olamide Fred","views":602,"_links":{"self":[{"href":"https:\/\/nicholasidoko.com\/blog\/wp-json\/wp\/v2\/posts\/2337","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nicholasidoko.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nicholasidoko.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nicholasidoko.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/nicholasidoko.com\/blog\/wp-json\/wp\/v2\/comments?post=2337"}],"version-history":[{"count":0,"href":"https:\/\/nicholasidoko.com\/blog\/wp-json\/wp\/v2\/posts\/2337\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/nicholasidoko.com\/blog\/wp-json\/wp\/v2\/media\/2340"}],"wp:attachment":[{"href":"https:\/\/nicholasidoko.com\/blog\/wp-json\/wp\/v2\/media?parent=2337"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nicholasidoko.com\/blog\/wp-json\/wp\/v2\/categories?post=2337"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nicholasidoko.com\/blog\/wp-json\/wp\/v2\/tags?post=2337"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}