{"id":3420,"date":"2023-08-31T10:59:21","date_gmt":"2023-08-31T10:59:21","guid":{"rendered":"https:\/\/neuraldesigner.com\/blog\/text-classification\/"},"modified":"2025-09-26T16:25:44","modified_gmt":"2025-09-26T14:25:44","slug":"text-classification","status":"publish","type":"blog","link":"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/","title":{"rendered":"Understanding text classification with machine learning"},"content":{"rendered":"<p data-start=\"51\" data-end=\"158\">Text classification is a machine learning technique that assigns predefined categories to free-form text.<\/p>\n<p data-start=\"160\" data-end=\"318\">With text classifiers, you can organize and categorize almost any kind of text, from documents and medical studies to extensive archives or even the entire web.<\/p>\n<p data-start=\"320\" data-end=\"416\">In this post, we explain this text mining technique along with its main stages and procedures.<\/p>\n<section><a href=\"https:\/\/www.neuraldesigner.com\">Neural Designer<\/a> incorporates this machine learning technique so that you can apply it in practice. You can download a free trial <a href=\"https:\/\/www.neuraldesigner.com\/free-trial\">here<\/a>.<\/section>\n<section>\n<h3>Contents<\/h3>\n<ol>\n<li><a href=\"#Introduction\">Introduction<\/a>.<\/li>\n<li><a href=\"#Data-processing-and-transformation\">Data processing and transformation<\/a>.<\/li>\n<li><a href=\"#Model-training\">Model training<\/a>.<\/li>\n<li><a href=\"#Testing analysis\">Testing analysis<\/a>.<\/li>\n<li><a href=\"#Conclusions\">Conclusions<\/a>.<\/li>\n<\/ol>\n<\/section>\n<section id=\"Introduction\">\n<h2>Introduction<\/h2>\n<p>The\u00a0categorization or classification of information is one of the most widely used branches of Text Mining.<\/p>\n<p>The premise of classification techniques is straightforward: starting from a set of data with an assigned category or label, the objective is to build a system that identifies patterns in existing documents to determine their class.<\/p>\n<\/section>\n<p>Text classification uses labeled documents to train a system that learns patterns and assigns each document to one of the predefined classes.<\/p>\n<section id=\"Introduction\">Examples of text classification applications include spam detection, sentiment analysis, hate speech detection, and the detection of fake news.<\/section>\n<p>Depending on the number of classes, text classification problems can be binary or multiple.<\/p>\n<p>In binary classification, the model determines whether a document belongs to a specific class\u2014for example, spam detection, where an email is classified as either spam or not.<\/p>\n<p>In multiple classification, each document is assigned to one class from several options\u2014for instance, sentiment analysis, where the categories can be happiness, sadness, joy, and others.<\/p>\n<article class=\"text-token-text-primary w-full focus:outline-none scroll-mt-[calc(var(--header-height)+min(200px,max(70px,20svh)))]\" dir=\"auto\" tabindex=\"-1\" data-turn-id=\"request-68c14edc-00d8-832b-af79-36da58cd2575-5\" data-testid=\"conversation-turn-416\" data-scroll-anchor=\"true\" data-turn=\"assistant\">\n<div class=\"text-base my-auto mx-auto pb-10 [--thread-content-margin:--spacing(4)] thread-sm:[--thread-content-margin:--spacing(6)] thread-lg:[--thread-content-margin:--spacing(16)] px-(--thread-content-margin)\">\n<div class=\"[--thread-content-max-width:40rem] thread-lg:[--thread-content-max-width:48rem] mx-auto max-w-(--thread-content-max-width) flex-1 group\/turn-messages focus-visible:outline-hidden relative flex w-full min-w-0 flex-col agent-turn\" tabindex=\"-1\">\n<div class=\"flex max-w-full flex-col grow\">\n<div class=\"min-h-8 text-message relative flex w-full flex-col items-end gap-2 text-start break-words whitespace-normal [.text-message+&amp;]:mt-5\" dir=\"auto\" data-message-author-role=\"assistant\" data-message-id=\"cec0b88b-378e-4694-adce-52791e9fe7ef\" data-message-model-slug=\"gpt-5\">\n<div class=\"flex w-full flex-col gap-1 empty:hidden first:pt-[3px]\">\n<div class=\"markdown prose dark:prose-invert w-full break-words light markdown-new-styling\">\n<p data-start=\"0\" data-end=\"111\" data-is-last-node=\"\" data-is-only-node=\"\">Labeling data is often a challenging step, typically performed manually by experts in the specific field of application.<\/p>\n<p>The following image summarizes the text classification training process.<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/article>\n<section id=\"Introduction\"><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/text-classification-outline.webp\" alt=\"outline\" \/>We can divide the text classification process into the following steps:<\/p>\n<ol>\n<li>Data processing and transformation<\/li>\n<li>Model training<\/li>\n<li>Testing analysis<\/li>\n<\/ol>\n<\/section>\n<section id=\"Data-processing-and-transformation\">\n<h2>1. Data processing and transformation<\/h2>\n<p>The transformation process in a classification problem comprises two stages: normalization and numerical representation.<\/p>\n<h3>Normalization<\/h3>\n<p>Sometimes, in classification problems, the computational cost is very high, and reducing the number of input variables helps obtain better results faster.<\/p>\n<p>For this purpose, document normalization is generally applied. This process consists of using some of the following techniques for reducing the number of input words:<\/p>\n<ol>\n<li><b>Lowercase transformation<\/b>: for example, &#8220;LoWerCaSE&#8221; is transformed into &#8220;lowercase.&#8221;<\/li>\n<li><b>Punctuation signs and special characters removal<\/b>: punctuation signs and special characters like &#8220;;&#8221;,&#8221; #&#8221;, or &#8220;=&#8221; are removed.<\/li>\n<li><b>Stop words elimination<\/b>: Stop words are commonly used words in any language that don&#8217;t provide any information for our model. For example, some stop words in the English language are &#8220;myself&#8221;, &#8220;can&#8221;, and &#8220;under&#8221;.<\/li>\n<li><b>Short and long word deletion<\/b>: short words are eliminated because they do not provide much information, for example, the word &#8220;he&#8221;. On the other hand, long words are eliminated because of their low frequency in the documents.<\/li>\n<li><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/dibujo.webp\" alt=\"outline\" \/><\/li>\n<li><b>Stemming<\/b>: Every word is composed of a root, a lemma (or lexeme), the part of the word that does not vary and indicates its central meaning, and a morpheme, particles that are added to the root to form new words.<br \/>\nThe stemming technique replaces each word with its lemma to obtain fewer input words.<\/li>\n<\/ol>\n<p>Once we have processed and normalized the documents, we must transform them into a numerical format that neural networks can process.<\/p>\n<h3>Numerical representation<\/h3>\n<p>The intuition behind this idea lies in representing documents as vectors in an n-dimensional vector space.<\/p>\n<p>Therefore, the neural network can interpret and utilize these vectors to perform various tasks.<\/p>\n<p>Among the simplest traditional text representation techniques is a Bag of Words.<\/p>\n<h3>Bag of Words<\/h3>\n<p>Bag-of-Words (BoW) consists of constructing a dictionary for the working dataset and representing each document as a count of the words in it.<\/p>\n<p>This type of representation represents the document as a vector with a length equal to the number of words in the dictionary.<\/p>\n<p>Each vector element denotes the frequency of each token&#8217;s usage in the document.<\/p>\n<table>\n<tbody>\n<tr>\n<th><\/th>\n<th>water<\/th>\n<th>steak<\/th>\n<th>want<\/th>\n<th>don&#8217;t<\/th>\n<th>the<\/th>\n<th>some<\/th>\n<th>and<\/th>\n<th>I<\/th>\n<\/tr>\n<tr>\n<th>&#8220;I want some water.&#8221;<\/th>\n<td style=\"text-align: right;\">1<\/td>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">1<\/td>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">1<\/td>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">1<\/td>\n<\/tr>\n<tr>\n<th>&#8220;I want the steak.&#8221;<\/th>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">1<\/td>\n<td style=\"text-align: right;\">1<\/td>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">1<\/td>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">1<\/td>\n<\/tr>\n<tr>\n<th>&#8220;I want steak, and I want water.&#8221;<\/th>\n<td style=\"text-align: right;\">1<\/td>\n<td style=\"text-align: right;\">1<\/td>\n<td style=\"text-align: right;\">1<\/td>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">1<\/td>\n<td style=\"text-align: right;\">1<\/td>\n<\/tr>\n<tr>\n<th>&#8220;I don&#8217;t want water.&#8221;<\/th>\n<td style=\"text-align: right;\">1<\/td>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">1<\/td>\n<td style=\"text-align: right;\">1<\/td>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">0<\/td>\n<td style=\"text-align: right;\">1<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>We refer to this method as a &#8220;bag of words&#8221; since it does not preserve the order of the words.<\/p>\n<p>It is also important to note that if new documents are introduced with vocabulary not present in the existing corpus, they can be transformed by omitting the unknown words.<\/p>\n<p>The BoW model has several drawbacks in its use.<\/p>\n<p>One of the most relevant is that when the corpus size is considerable, the vocabulary size is consequently increased.<\/p>\n<p>Therefore, very sparse vector sets are obtained, with many zeros and large sizes, which implies a higher memory consumption.<\/p>\n<\/section>\n<section id=\"Model-training\">\n<h2>2. Model training<\/h2>\n<p>Once the document&#8217;s numerical representation has been obtained, we can start model training using a classification neural network.<\/p>\n<p>A classification neural network usually requires a scaling layer, one or several perceptron layers, and a probabilistic layer.<\/p>\n<\/section>\n<section id=\"Texting-analysis\">\n<h2>3. Testing analysis<\/h2>\n<p>As with any classification problem, model evaluation is essential.<\/p>\n<p>However, in text classification problems, evaluation measures are not absolute, as they depend on the specific classification task: classifying medical texts is not the same as classifying whether a review is positive or negative.<\/p>\n<p>Therefore, the most common approach is to consult the literature for baselines for similar tasks and compare them to determine if we are achieving acceptable results.<\/p>\n<p>As with a traditional classification task, the most used metrics are:<\/p>\n<h3><b>Confusion matrix<\/b><\/h3>\n<p>In the confusion matrix, the rows represent the target classes in the data set, and the columns represent the predicted output classes from the neural network.<\/p>\n<p>The following table represents the confusion matrix:<\/p>\n<table>\n<tbody>\n<tr>\n<th><\/th>\n<th>Predict class 1<\/th>\n<th>&#8230;<\/th>\n<th>Predict class N<\/th>\n<\/tr>\n<tr>\n<th>Red class 1<\/th>\n<th>#<\/th>\n<th>#<\/th>\n<th>#<\/th>\n<\/tr>\n<tr>\n<th>&#8230;<\/th>\n<th>#<\/th>\n<th>#<\/th>\n<th>#<\/th>\n<\/tr>\n<tr>\n<th>Red class N<\/th>\n<th>#<\/th>\n<th>#<\/th>\n<th>#<\/th>\n<\/tr>\n<\/tbody>\n<\/table>\n<ul>\n<li><b>Accuracy<\/b>: The proportion of correctly classified documents from the total for which the model predicted the class c.<br \/>\ndiv style=&#8221;max-width: 100%; overflow-x:auto&#8221;&gt;<br \/>\n$$ precision = frac{# true positives}{# true positives + # false positives}$$<\/li>\n<li><b>Recall<\/b>: The proportion of correctly classified documents among all documents in the training set with class c.<br \/>\n$$ recall = frac{# true positives}{# true positives + # false negatives}$$<\/li>\n<li><b>F1-Score<\/b>: Generally, a good classifier should balance accuracy and recall. For this purpose, we use the F1-score metric, which considers both parameters. This score will penalize the total value if either of the two values is too low.<br \/>\n$$ F1 = frac{2\u00b7precision\u00b7recall}{precision + recal}$$<\/li>\n<\/ul>\n<p>Additionally, we must strike a balance between overfitting and underfitting to achieve a high-quality classifier.<\/p>\n<p>An underfitted model has low variance, meaning that when the same data is introduced, the exact prediction is obtained; however, this prediction is too far from reality.<\/p>\n<p>This phenomenon occurs when the model has insufficient training data to find the existing patterns in the data.<\/p>\n<p>Alternatively, achieving the optimal operational point involves evaluating the model with entirely new, untrained data.<\/p>\n<p>For this reason, it is advisable to subdivide the corpus into multiple subsets (training, testing, and selection).<\/p>\n<h2>Conclusions<\/h2>\n<p data-start=\"71\" data-end=\"257\">Text classification is one of the most widely used techniques in machine learning.<\/p>\n<p data-start=\"71\" data-end=\"257\">It can be applied to tasks such as sentiment analysis of reviews or prioritizing support messages by urgency.<\/p>\n<p data-start=\"259\" data-end=\"496\">This article reviews the key stages of a text classification project, including data processing and transformation, model training, and testing analysis.<\/p>\n<p data-start=\"259\" data-end=\"496\">By following these steps, you can build accurate and effective text classification models.<\/p>\n<\/section>\n<section id=\"Texting-analysis\">\n<h2>Related posts<\/h2>\n<\/section>\n","protected":false},"author":17,"featured_media":1437,"template":"","categories":[],"tags":[36],"class_list":["post-3420","blog","type-blog","status-publish","has-post-thumbnail","hentry","tag-tutorials"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Understanding text classification with machine learning<\/title>\n<meta name=\"description\" content=\"Text classification is a machine learning technique, known as Text Mining technique, that assigns predefined categories to open text.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Understanding text classification with machine learning\" \/>\n<meta property=\"og:description\" content=\"Text classification is a machine learning technique, known as Text Mining technique, that assigns predefined categories to open text.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/\" \/>\n<meta property=\"og:site_name\" content=\"Neural Designer\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-26T14:25:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/text-classification.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1093\" \/>\n\t<meta property=\"og:image:height\" content=\"440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@NeuralDesigner\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/\",\"url\":\"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/\",\"name\":\"Understanding text classification with machine learning\",\"isPartOf\":{\"@id\":\"https:\/\/www.neuraldesigner.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/text-classification.webp\",\"datePublished\":\"2023-08-31T10:59:21+00:00\",\"dateModified\":\"2025-09-26T14:25:44+00:00\",\"description\":\"Text classification is a machine learning technique, known as Text Mining technique, that assigns predefined categories to open text.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/#primaryimage\",\"url\":\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/text-classification.webp\",\"contentUrl\":\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/text-classification.webp\",\"width\":1093,\"height\":440},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.neuraldesigner.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https:\/\/www.neuraldesigner.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Understanding text classification with machine learning\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.neuraldesigner.com\/#website\",\"url\":\"https:\/\/www.neuraldesigner.com\/\",\"name\":\"Neural Designer\",\"description\":\"Explanable AI Platform\",\"publisher\":{\"@id\":\"https:\/\/www.neuraldesigner.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.neuraldesigner.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.neuraldesigner.com\/#organization\",\"name\":\"Neural Designer\",\"url\":\"https:\/\/www.neuraldesigner.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.neuraldesigner.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/05\/logo-neural-1.png\",\"contentUrl\":\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/05\/logo-neural-1.png\",\"width\":1024,\"height\":223,\"caption\":\"Neural Designer\"},\"image\":{\"@id\":\"https:\/\/www.neuraldesigner.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/NeuralDesigner\",\"https:\/\/es.linkedin.com\/showcase\/neuraldesigner\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Understanding text classification with machine learning","description":"Text classification is a machine learning technique, known as Text Mining technique, that assigns predefined categories to open text.","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:\/\/www.neuraldesigner.com\/blog\/text-classification\/","og_locale":"en_US","og_type":"article","og_title":"Understanding text classification with machine learning","og_description":"Text classification is a machine learning technique, known as Text Mining technique, that assigns predefined categories to open text.","og_url":"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/","og_site_name":"Neural Designer","article_modified_time":"2025-09-26T14:25:44+00:00","og_image":[{"width":1093,"height":440,"url":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/text-classification.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","twitter_site":"@NeuralDesigner","twitter_misc":{"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/","url":"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/","name":"Understanding text classification with machine learning","isPartOf":{"@id":"https:\/\/www.neuraldesigner.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/#primaryimage"},"image":{"@id":"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/#primaryimage"},"thumbnailUrl":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/text-classification.webp","datePublished":"2023-08-31T10:59:21+00:00","dateModified":"2025-09-26T14:25:44+00:00","description":"Text classification is a machine learning technique, known as Text Mining technique, that assigns predefined categories to open text.","breadcrumb":{"@id":"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.neuraldesigner.com\/blog\/text-classification\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/#primaryimage","url":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/text-classification.webp","contentUrl":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/text-classification.webp","width":1093,"height":440},{"@type":"BreadcrumbList","@id":"https:\/\/www.neuraldesigner.com\/blog\/text-classification\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.neuraldesigner.com\/"},{"@type":"ListItem","position":2,"name":"Blog","item":"https:\/\/www.neuraldesigner.com\/blog\/"},{"@type":"ListItem","position":3,"name":"Understanding text classification with machine learning"}]},{"@type":"WebSite","@id":"https:\/\/www.neuraldesigner.com\/#website","url":"https:\/\/www.neuraldesigner.com\/","name":"Neural Designer","description":"Explanable AI Platform","publisher":{"@id":"https:\/\/www.neuraldesigner.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.neuraldesigner.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.neuraldesigner.com\/#organization","name":"Neural Designer","url":"https:\/\/www.neuraldesigner.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.neuraldesigner.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/05\/logo-neural-1.png","contentUrl":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/05\/logo-neural-1.png","width":1024,"height":223,"caption":"Neural Designer"},"image":{"@id":"https:\/\/www.neuraldesigner.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/NeuralDesigner","https:\/\/es.linkedin.com\/showcase\/neuraldesigner\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/blog\/3420","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/blog"}],"about":[{"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/types\/blog"}],"author":[{"embeddable":true,"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/users\/17"}],"version-history":[{"count":0,"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/blog\/3420\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/media\/1437"}],"wp:attachment":[{"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/media?parent=3420"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/categories?post=3420"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/tags?post=3420"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}