{"id":3587,"date":"2022-06-06T16:44:53","date_gmt":"2022-06-06T11:14:53","guid":{"rendered":"https:\/\/binaryterms.com\/?p=3587"},"modified":"2022-06-06T17:15:46","modified_gmt":"2022-06-06T11:45:46","slug":"neural-network-in-data-mining","status":"publish","type":"post","link":"https:\/\/binaryterms.com\/neural-network-in-data-mining.html","title":{"rendered":"Neural Network in Data Mining"},"content":{"rendered":"<p>The neural network in data mining is a classification method that takes the input, trains itself to recognize the pattern of input data and predicts the output for new input of a similar kind.<\/p>\n<p>Neural network forms the basis of deep learning, a subfield of machine learning that comes under artificial intelligence. Designing neural network algorithms is inspired by the structure of the human brain.<\/p>\n<p>Just as the human brain is responsible for intelligence and its discriminating power, the neural network also mimics the human brain and learns from its experience and applies this learning for classification and prediction.<\/p>\n<h2>Content: Neural Network in Data Mining<\/h2>\n<ol>\n<li><a href=\"#WhatisNeuralNetwork?\">What is Neural Network?<\/a><\/li>\n<li><a href=\"#HowNeuralNetworkWorks?\">How Neural Network Works?<\/a><\/li>\n<li><a href=\"#ApplicationofNeuralNetwork\">Application of Neural Network<\/a><\/li>\n<li><a href=\"#TypesofNeuralNetwork\">Types of Neural Network<\/a><\/li>\n<\/ol>\n<p><a name=\"WhatisNeuralNetwork?\"><\/a><\/p>\n<h3>What is Neural Network?<\/h3>\n<p>A neural network is a set of connected input\/output units. A weight is associated with each connection, which is adjusted by the network during the learning process. So that, the network is able to predict the correct class label of input tuples.<\/p>\n<p>The artificial neural network is designed after the structure of the human brain. The structure has an input\/output unit that depicts the neuron of the human brain we refer to it as a node and we refer to the connection between the nodes as a link. The figure below represents the artificial neuron network.<br \/>\n<a name=\"HowNeuralNetworkWorks?\"><\/a><\/p>\n<h3>How Neural Network Works?<\/h3>\n<p>Knowing the overall structure of the neural network lets us understand the working of the neural network with the help of a simple example.<\/p>\n<p>Do you know how we are able to classify a flower and leaf? Consider that we see a picture of a flower which is composed of 20 x 20 pixels i.e. equal to 400 hundred pixels<\/p>\n<p>The input nodes of the network receive a set of input values. The number of input nodes is equivalent to the number of input variables.<\/p>\n<p>Now each of these pixels is fed as an input to the first layer of the neural network i.e. in our example X<sub>1<\/sub> to X<sub>400<\/sub>.<\/p>\n<p>The first layer of the network is connected to the next layer with a link and each link is associated with a weight.<\/p>\n<p>Now, to evaluate the value for each neuron in the next layer we implement a summation function.<\/p>\n<p>Say to evaluate the value for the first neuron in the second layer of our example we would implement a summation function:<\/p>\n<p style=\"text-align: center\">= [X<sub>1*<\/sub>W<sub>11 <\/sub>+ X<sub>3*<\/sub>W<sub>31<\/sub>]<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3588\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-1.jpg\" alt=\"Neural Network step 1\" width=\"600\" height=\"450\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-1.jpg 600w, https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-1-300x225.jpg 300w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<p>This summation result is sent to the first neuron of the next layer. Now each neuron in the hidden layer has a numerical value associated with it which we refer to as \u2018bias\u2019.<\/p>\n<p>So here, the summation result is added to the bias B<sub>1<\/sub>.<\/p>\n<p style=\"text-align: center\">= [X<sub>1*<\/sub>W<sub>11 <\/sub>+ X<sub>3*<\/sub>W<sub>31<\/sub>] + B<sub>1<\/sub><\/p>\n<p>This result is further passed to a threshold activation function which decides whether this particular neuron will be activated or not.<\/p>\n<p style=\"text-align: center\">Output = Activation Function ([X<sub>1*<\/sub>W<sub>11 <\/sub>+ X<sub>3*<\/sub>W<sub>31<\/sub>] + B<sub>1\u00ad<\/sub>)<\/p>\n<p>The activated neuron further sends this information to the neurons present in the next layer.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3589\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-2.jpg\" alt=\"Neural Network step 2\" width=\"600\" height=\"453\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-2.jpg 600w, https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-2-300x227.jpg 300w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<p>In this way, the information is propagated over the network through the links and we refer to it as forwarding propagation.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3590\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-3.jpg\" alt=\"Neural Network step 3\" width=\"600\" height=\"457\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-3.jpg 600w, https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-3-300x229.jpg 300w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<p>As the information reaches the output layer the neuron with the highest value determines the result. The values of a neuron at the outer layer are nothing but probability.<\/p>\n<p>The neuron with the highest probability at the output layer is the output predicted by the neural network. In our case, the neuron associated with the flower has the highest probability of depicting the correct answer.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3591\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-4.jpg\" alt=\"Neural Network step 4\" width=\"600\" height=\"459\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-4.jpg 600w, https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-4-300x230.jpg 300w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<p>Sometimes when the network is yet to be trained it might predict the incorrect answer. Well to figure this out, the network is also fed along with the output. The network compares the predicted output with the actual output. To correct the output, the networks&#8217; weights are adjusted until the network predicts the correct answer.<br \/>\n<a name=\"ApplicationofNeuralNetwork\"><\/a><\/p>\n<h3>Application of Neural Network in Data Mining<\/h3>\n<p>The neural network in data mining performs the task such as:<\/p>\n<ul>\n<li>Classification<\/li>\n<li>Clustering or categorization<\/li>\n<li>Prediction<\/li>\n<li>Function approximation<\/li>\n<li>Optimization<\/li>\n<li>Retrieval by content or control<\/li>\n<\/ul>\n<p><a name=\"TypesofNeuralNetwork\"><\/a><\/p>\n<h3>Types of Neural Network<\/h3>\n<p>The are several types of the neural networks depending on their behaviour they are:<\/p>\n<ul>\n<li>Recurrent Neural Network<\/li>\n<li>Convolution Neural Network<\/li>\n<li>Radial Basis Function Neural Network<\/li>\n<li>Feed Forward Neural Network<\/li>\n<li>Modular Neural Network<\/li>\n<\/ul>\n<h4>Recurrent Neural Network (RNN)<\/h4>\n<p>The recurrent neural network is adapted for the data that has sequencing. The data with sequencing may be such that the one data point be depending on the previous data point. In such cases, the neural network must be modified to inntegrate the dependencies between the data points. RNN include the memory that can store the information about the previous data points that helps in generating the next output in the sequence.<\/p>\n<h4>Convolutional Neural Network<\/h4>\n<p>The convolutional neural network is used to recognise images and is used in the process specifically designed to process data pixels. It is a deep learning algorithm that intakes an image and assigns importance to various aspects of the image so that the network is able to differentiate one image from the other.<\/p>\n<h4>Radial Basis Function Neural Network<\/h4>\n<p>This kind of neural network uses a radial basis function as an activation function and it is the fastest learning network. This neural network is used for function approximation, classification and time series prediction that further helps in predicting the stock price, fraud detection in financial transactions etc.<\/p>\n<h4>Feed Forward Neural Network<\/h4>\n<p>In this neural network, the information is propagated in the forward direction only. However, there are no cycles or loops in the data propagation. The feed-forward network is specially used for supervised learning, pattern recognition and classification, non-linear regression, and function approximation.<\/p>\n<h4>Modular Neural Network<\/h4>\n<p>This neural network is used for solving complex AI problems. It is characterized by a series of neural networks where each neural network is independent and serves as a module in the network. Each module operates on separate input and performs a subtask from the task that the whole network is hoped to perform.<\/p>\n<p>So, this is all about the neural network in data mining that has the same structure as the human brain. Similar to the human brain the neural network takes the input process and predicts the output. Thus, it is nowadays used in much artificial intelligence (AI) systems such as face recognition, music composition, real-time translation, etc.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The neural network in data mining is a classification method that takes the input, trains itself to recognize the pattern of input data and predicts the output for new input of a similar kind. Neural network forms the basis of deep learning, a subfield of machine learning that comes under artificial intelligence. Designing neural network [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[11],"tags":[],"class_list":{"0":"post-3587","1":"post","2":"type-post","3":"status-publish","4":"format-standard","6":"category-data-warehouse-and-mining","7":"entry"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is Neural Network in Data Mining? Working, Application &amp; Types - Binary Terms<\/title>\n<meta name=\"description\" content=\"The neural network in data mining is a classification method that takes the input, trains itself to recognize the pattern of input data and predicts the output for new input of a similar kind.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/binaryterms.com\/neural-network-in-data-mining.html\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Neural Network in Data Mining? Working, Application &amp; Types - Binary Terms\" \/>\n<meta property=\"og:description\" content=\"The neural network in data mining is a classification method that takes the input, trains itself to recognize the pattern of input data and predicts the output for new input of a similar kind.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/binaryterms.com\/neural-network-in-data-mining.html\" \/>\n<meta property=\"og:site_name\" content=\"Binary Terms\" \/>\n<meta property=\"article:published_time\" content=\"2022-06-06T11:14:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-06T11:45:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-1.jpg\" \/>\n<meta name=\"author\" content=\"Neha T\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Neha T\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated 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:\/\/binaryterms.com\/neural-network-in-data-mining.html#article\",\"isPartOf\":{\"@id\":\"https:\/\/binaryterms.com\/neural-network-in-data-mining.html\"},\"author\":{\"name\":\"Neha T\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe\"},\"headline\":\"Neural Network in Data Mining\",\"datePublished\":\"2022-06-06T11:14:53+00:00\",\"dateModified\":\"2022-06-06T11:45:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/binaryterms.com\/neural-network-in-data-mining.html\"},\"wordCount\":1052,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/binaryterms.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/neural-network-in-data-mining.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-1.jpg\",\"articleSection\":[\"Data Warehouse and Mining\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/binaryterms.com\/neural-network-in-data-mining.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/binaryterms.com\/neural-network-in-data-mining.html\",\"url\":\"https:\/\/binaryterms.com\/neural-network-in-data-mining.html\",\"name\":\"What is Neural Network in Data Mining? Working, Application & Types - Binary Terms\",\"isPartOf\":{\"@id\":\"https:\/\/binaryterms.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/binaryterms.com\/neural-network-in-data-mining.html#primaryimage\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/neural-network-in-data-mining.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-1.jpg\",\"datePublished\":\"2022-06-06T11:14:53+00:00\",\"dateModified\":\"2022-06-06T11:45:46+00:00\",\"description\":\"The neural network in data mining is a classification method that takes the input, trains itself to recognize the pattern of input data and predicts the output for new input of a similar kind.\",\"breadcrumb\":{\"@id\":\"https:\/\/binaryterms.com\/neural-network-in-data-mining.html#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/binaryterms.com\/neural-network-in-data-mining.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/binaryterms.com\/neural-network-in-data-mining.html#primaryimage\",\"url\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-1.jpg\",\"contentUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-1.jpg\",\"width\":600,\"height\":450,\"caption\":\"Neural Network step 1\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/binaryterms.com\/neural-network-in-data-mining.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/binaryterms.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Neural Network in Data Mining\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/binaryterms.com\/#website\",\"url\":\"https:\/\/binaryterms.com\/\",\"name\":\"Binary Terms\",\"description\":\"The Computer Science &amp; IT Guide\",\"publisher\":{\"@id\":\"https:\/\/binaryterms.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/binaryterms.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/binaryterms.com\/#organization\",\"name\":\"Binary Terms\",\"url\":\"https:\/\/binaryterms.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png\",\"contentUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png\",\"width\":400,\"height\":63,\"caption\":\"Binary Terms\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe\",\"name\":\"Neha T\",\"url\":\"https:\/\/binaryterms.com\/author\/author\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Neural Network in Data Mining? Working, Application & Types - Binary Terms","description":"The neural network in data mining is a classification method that takes the input, trains itself to recognize the pattern of input data and predicts the output for new input of a similar kind.","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:\/\/binaryterms.com\/neural-network-in-data-mining.html","og_locale":"en_GB","og_type":"article","og_title":"What is Neural Network in Data Mining? Working, Application & Types - Binary Terms","og_description":"The neural network in data mining is a classification method that takes the input, trains itself to recognize the pattern of input data and predicts the output for new input of a similar kind.","og_url":"https:\/\/binaryterms.com\/neural-network-in-data-mining.html","og_site_name":"Binary Terms","article_published_time":"2022-06-06T11:14:53+00:00","article_modified_time":"2022-06-06T11:45:46+00:00","og_image":[{"url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-1.jpg","type":"","width":"","height":""}],"author":"Neha T","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Neha T","Estimated reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/binaryterms.com\/neural-network-in-data-mining.html#article","isPartOf":{"@id":"https:\/\/binaryterms.com\/neural-network-in-data-mining.html"},"author":{"name":"Neha T","@id":"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe"},"headline":"Neural Network in Data Mining","datePublished":"2022-06-06T11:14:53+00:00","dateModified":"2022-06-06T11:45:46+00:00","mainEntityOfPage":{"@id":"https:\/\/binaryterms.com\/neural-network-in-data-mining.html"},"wordCount":1052,"commentCount":1,"publisher":{"@id":"https:\/\/binaryterms.com\/#organization"},"image":{"@id":"https:\/\/binaryterms.com\/neural-network-in-data-mining.html#primaryimage"},"thumbnailUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-1.jpg","articleSection":["Data Warehouse and Mining"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/binaryterms.com\/neural-network-in-data-mining.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/binaryterms.com\/neural-network-in-data-mining.html","url":"https:\/\/binaryterms.com\/neural-network-in-data-mining.html","name":"What is Neural Network in Data Mining? Working, Application & Types - Binary Terms","isPartOf":{"@id":"https:\/\/binaryterms.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/binaryterms.com\/neural-network-in-data-mining.html#primaryimage"},"image":{"@id":"https:\/\/binaryterms.com\/neural-network-in-data-mining.html#primaryimage"},"thumbnailUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-1.jpg","datePublished":"2022-06-06T11:14:53+00:00","dateModified":"2022-06-06T11:45:46+00:00","description":"The neural network in data mining is a classification method that takes the input, trains itself to recognize the pattern of input data and predicts the output for new input of a similar kind.","breadcrumb":{"@id":"https:\/\/binaryterms.com\/neural-network-in-data-mining.html#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/binaryterms.com\/neural-network-in-data-mining.html"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/binaryterms.com\/neural-network-in-data-mining.html#primaryimage","url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-1.jpg","contentUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/06\/Neural-Network-step-1.jpg","width":600,"height":450,"caption":"Neural Network step 1"},{"@type":"BreadcrumbList","@id":"https:\/\/binaryterms.com\/neural-network-in-data-mining.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/binaryterms.com\/"},{"@type":"ListItem","position":2,"name":"Neural Network in Data Mining"}]},{"@type":"WebSite","@id":"https:\/\/binaryterms.com\/#website","url":"https:\/\/binaryterms.com\/","name":"Binary Terms","description":"The Computer Science &amp; IT Guide","publisher":{"@id":"https:\/\/binaryterms.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/binaryterms.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/binaryterms.com\/#organization","name":"Binary Terms","url":"https:\/\/binaryterms.com\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/","url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png","contentUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png","width":400,"height":63,"caption":"Binary Terms"},"image":{"@id":"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe","name":"Neha T","url":"https:\/\/binaryterms.com\/author\/author"}]}},"_links":{"self":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/3587","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/comments?post=3587"}],"version-history":[{"count":4,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/3587\/revisions"}],"predecessor-version":[{"id":3596,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/3587\/revisions\/3596"}],"wp:attachment":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/media?parent=3587"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/categories?post=3587"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/tags?post=3587"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}