{"id":3383,"date":"2023-08-31T10:59:22","date_gmt":"2023-08-31T10:59:22","guid":{"rendered":"https:\/\/neuraldesigner.com\/blog\/electricity_demand_forecasting\/"},"modified":"2025-09-15T15:24:58","modified_gmt":"2025-09-15T13:24:58","slug":"electricity_demand_forecasting","status":"publish","type":"blog","link":"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/","title":{"rendered":"Forecast electricity demand using machine learning"},"content":{"rendered":"<p data-start=\"66\" data-end=\"334\">Forecasting power demand is crucial for planning and operating electrical systems.<\/p>\n<p data-start=\"66\" data-end=\"334\">Utilities use short-, medium-, and long-term forecasting, but electricity demand depends on complex meteorological and socio-economic factors, making traditional methods insufficient.<\/p>\n<p data-start=\"336\" data-end=\"570\">Machine learning offers more advanced ways to capture these dynamics.<\/p>\n<p data-start=\"336\" data-end=\"570\">In this post, we demonstrate how by building a neural network to predict electricity demand using a real dataset from <a href=\"https:\/\/www.kaggle.com\/nicholasjhana\/energy-consumption-generation-prices-and-weather\">Kaggle<\/a>, a leading data science repository.<\/p>\n<h2><span style=\"font-size: 16px;\">Contents<\/span><\/h2>\n<section>\n<ol>\n<li><a href=\"#DataSet\">Data set<\/a>.<\/li>\n<li><a href=\"#PredictiveModel\">Predictive model<\/a>.<\/li>\n<\/ol>\n<\/section>\n<section id=\"DataSet\">\n<h2>1. Data set<\/h2>\n<p>A good model for predicting the electricity demand requires analysis of the following types of <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#Variables\">variables<\/a>:<\/p>\n<ul>\n<li><b>Calendar data<\/b>: Season, hour, bank holidays, etc.<\/li>\n<li><b>Weather data<\/b>: Temperature, humidity, rainfall, etc.<\/li>\n<li><b>Company data<\/b>: Price of electricity, promotions, marketing campaigns, etc.<\/li>\n<li><b>Social data<\/b>: Economic and political factors that a country is experimenting with.<\/li>\n<li><b>Demand data<\/b>: Historical consumption of electricity.<\/li>\n<\/ul>\n<p>The data set of our example contains the hourly temperatures and electrical demands for four years. This adds up to more than 70,000 data.<\/p>\n<p>The first column represents the date and time when each instance is measured. The following column is the ambient temperature, and the last column is the electric power demand for that hour of the day.<\/p>\n<h3>Time series charts<\/h3>\n<p>The time series charts of our dataset are represented here. The first one is the temperature at 23:00 for the final period of our\u00a0<a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set\">dataset<\/a>.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/temperature_time_series.webp\" alt=\"Temperature time series\" \/><\/p>\n<p>This figure starts in summer with the highest temperatures. Then, it gets the coldest in December and January. We can observe the next peak during August and how the temperature lowers again for winter.<\/p>\n<p>The time-series chart for the demand at 23:00 is represented in the following figure.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/demand_time_series.webp\" alt=\"Demand time series\" \/><\/p>\n<p>This chart shows that at 23:00, the demand is much more significant in winter.<\/p>\n<p>It is cold, so people usually use more electricity for the heating system. During the summer, there is a smaller peak in the electricity expenditure. In this case, it is used for the air conditioner.<\/p>\n<h3>Lags and steps ahead<\/h3>\n<p>The data set is transformed into a group of instances where the <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#InputVariables\">inputs<\/a> represent\u00a0<span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">historical data, and the\u00a0<a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#TargetVariables\" target=\"_blank\" rel=\"noopener\">targets<\/a> represent future information<\/span>.<\/p>\n<p>The temperature associated with future demand will also be used as an <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#InputVariables\">input<\/a> variable because it can be determined in advance.<\/p>\n<p>In this case, we have set the project configuration to predict the coming day from the data of the previous two days.<\/p>\n<p>For that purpose, the number of <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#InputVariables\">input variables<\/a>\u00a0will be 125, and the number of\u00a0<a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#TargetVariables\">target variables<\/a>\u00a0will be 24.<\/p>\n<h3>Scatter charts<\/h3>\n<p><a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#ScatterCharts\">Scatter charts<\/a>\u00a0can help us understand how electric power demand depends on the different features.<\/p>\n<p>The first <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#ScatterCharts\">scatter chart<\/a> represents the relationship between demand and temperature.<\/p>\n<p>This case represents tomorrow&#8217;s demand against today&#8217;s temperature at the same hour.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/temperature_scatter_chart.webp\" alt=\"Temperature scatter chart\" \/><\/p>\n<p>As we can see in the previous picture, the highest demand for tomorrow is at the time of the lowest temperature.<\/p>\n<p>Then, the demand lowers as the temperature reaches a pleasant value (16-20 \u00baC). It rises again when the temperature is higher.<\/p>\n<p>The following scatter chart shows the current demand against past demands.<\/p>\n<p>We plot tomorrow&#8217;s demand against today&#8217;s demand at the same hour.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/demand_scatter_chart.webp\" alt=\"Demand scatter chart\" \/><\/p>\n<p>There is a high correlation between these values.<\/p>\n<\/section>\n<section id=\"PredictiveModel\">\n<h2>Predictive model<\/h2>\n<p>This <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set\">data<\/a> is combined in a single predictive model to discover associations between all the above variables.<\/p>\n<p>This will give us a more in-depth understanding of the causes of demand and enable more informed decision-making.<\/p>\n<h3>Neural network<\/h3>\n<p><a href=\"https:\/\/www.neuraldesigner.com\/learning\/neural-networks-tutorial\">Neural networks<\/a> can anticipate customer responses about energy consumption by considering all relevant factors.<br \/>\nThe result is improved forecast accuracy, which means better information for decision-making.<\/p>\n<p>Here is a diagram that depicts the neural network that we will use in this example<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/demand_network_architecture.webp\" alt=\"Network architecture\" \/><\/p>\n<h3>Model selection<\/h3>\n<p><a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/model-selection#OrderSelection\">Order selection<\/a> algorithms are used to get the optimal number of neurons in a <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/neural-network\">neural network<\/a>.<\/p>\n<p>In this case, the\u00a0<a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/model-selection#IncrementalOrder\">incremental order<\/a> method is used.<\/p>\n<p>The following chart shows the loss history for the different subsets during the <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/model-selection#IncrementalOrder\">incremental order selection<\/a> process. The blue line represents the training <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/training-strategy#LossIndex\">loss<\/a>, and the yellow line symbolizes the selection error.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/demand_loss_history.webp\" alt=\"Loss history\" \/><\/p>\n<p>As shown in the previous picture, the optimal order is 24.<\/p>\n<p>Finally, the architecture of this <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/neural-network\">neural network<\/a> can be written as 125:24:24.<\/p>\n<h3>Testing analysis<\/h3>\n<p>The objective of the <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/testing-analysis\">testing analysis<\/a> is to evaluate the predictive power of the\u00a0<a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/neural-network\">neural network<\/a> on new data that have not been seen before: the <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#TestingInstances\">testing instances<\/a>.<\/p>\n<p>This process will determine if the predictive model is good enough to be moved into the deployment phase.<\/p>\n<p>First, we perform the\u00a0<a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/testing-analysis#LinearRegressionAnalysis\">linear regression analysis<\/a>\u00a0between the scaled neural network outputs and the corresponding targets for an independent testing subset.<\/p>\n<p>The following figure represents the linear regression chart of the predicted demand at 1:00.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/demand_linear_regression.webp\" alt=\"Linear regression analysis\" \/><\/p>\n<p>The correlation is very similar to 1. Therefore, the\u00a0<a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/neural-network\">neural network<\/a> predicts the <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#TestingInstances\">testing instances<\/a>\u00a0well.<\/p>\n<p>Finally, we calculate the <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/testing-analysis#ErrorsStatistics\">error statistics<\/a>. The mean percentage error obtained using the previous value as the prediction is 5.04%. We have an error of 3.10% using the model, which enables us to make more accurate predictions. Therefore, we can deploy the model.<\/p>\n<h3>Model deployment<\/h3>\n<p>Once we have tested our predictive model, we can apply it to predict the electric power demand for tomorrow. This process is called <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/model-deployment\">model deployment<\/a>.<\/p>\n<p>The following figure shows the hourly electric power demand prediction for tomorrow in kW, considering the following inputs: yesterday&#8217;s, today&#8217;s, and tomorrow&#8217;s temperatures and yesterday&#8217;s and today&#8217;s power demands.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/demand_prediction.webp\" alt=\"Demand prediction\" \/><\/p>\n<p>As we can see, the graph looks as expected. Between 5:00 and 8:00, the electricity demand will increase by 10 MW.<br \/>\nThis phenomenon matches the beginning of residential, industrial, and service activities.<\/p>\n<p>The second peak occurs around 18:00, primarily because most people return home at this time, leading to an increase in activities such as turning on the heating system.<\/p>\n<\/section>\n<section id=\"Conclusions\">\n<h2>Conclusions<\/h2>\n<p>Machine learning permits us to model and understand very complex systems.<\/p>\n<p>That allows companies to represent the complexity of electricity demand in a previously unachievable way.<\/p>\n<p>More specifically, the objective is to achieve more accurate forecasts for the electricity demand.<\/p>\n<p>Due to predictive analytics, we can predict tomorrow&#8217;s electric demand with highly successful results.<\/p>\n<p>For that reason, this will be a significant advance for companies in the energy sector.<\/p>\n<p>The use of machine learning means better information to inform the best course of action.<\/p>\n<p>Therefore, companies that use this technology will have a competitive advantage.<\/p>\n<p>You can use the data science and machine learning platform <a href=\"https:\/\/www.neuraldesigner.com\">Neural Designer<\/a> to build your predictive models in just a few clicks. <a href=\"https:\/\/www.neuraldesigner.com\/free-trial\">Download Neural Designer now<\/a> and try it for free.<\/p>\n<\/section>\n<section>\n<h2>References<\/h2>\n<ul>\n<li>The data used for this example can be downloaded from <a href=\"https:\/\/www.kaggle.com\/nicholasjhana\/energy-consumption-generation-prices-and-weather\" target=\"_blank\" rel=\"noopener\">Kaggle<\/a>. It has been processed with Python to obtain the desired results. You can download the processed dataset <a href=\"https:\/\/www.neuraldesigner.com\/files\/datasets\/electricity_demand.csv\">here<\/a>.<\/li>\n<\/ul>\n<\/section>\n<section>\n<h3>Related posts<\/h3>\n<\/section>\n","protected":false},"author":20,"featured_media":2260,"template":"","categories":[],"tags":[44],"class_list":["post-3383","blog","type-blog","status-publish","has-post-thumbnail","hentry","tag-energy"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Forecast electricity demand using machine learning<\/title>\n<meta name=\"description\" content=\"Build a machine learning model using electricity demand and meteorological data to build a predictive electricity consumption model.\" \/>\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\/electricity_demand_forecasting\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Electricity demand forecasting using machine learning\" \/>\n<meta property=\"og:description\" content=\"In this post a predictive model for the consumption of electrical energy is built.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/\" \/>\n<meta property=\"og:site_name\" content=\"Neural Designer\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-15T13:24:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/electricity-demand.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Electricity demand forecasting using machine learning\" \/>\n<meta name=\"twitter:description\" content=\"In this post a predictive model for the consumption of electrical energy is built.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/electricity-demand.webp\" \/>\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\/electricity_demand_forecasting\/\",\"url\":\"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/\",\"name\":\"Forecast electricity demand using machine learning\",\"isPartOf\":{\"@id\":\"https:\/\/www.neuraldesigner.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/electricity-demand.webp\",\"datePublished\":\"2023-08-31T10:59:22+00:00\",\"dateModified\":\"2025-09-15T13:24:58+00:00\",\"description\":\"Build a machine learning model using electricity demand and meteorological data to build a predictive electricity consumption model.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/#primaryimage\",\"url\":\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/electricity-demand.webp\",\"contentUrl\":\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/electricity-demand.webp\",\"width\":1200,\"height\":628},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/#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\":\"Forecast electricity demand using 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":"Forecast electricity demand using machine learning","description":"Build a machine learning model using electricity demand and meteorological data to build a predictive electricity consumption model.","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\/electricity_demand_forecasting\/","og_locale":"en_US","og_type":"article","og_title":"Electricity demand forecasting using machine learning","og_description":"In this post a predictive model for the consumption of electrical energy is built.","og_url":"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/","og_site_name":"Neural Designer","article_modified_time":"2025-09-15T13:24:58+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/electricity-demand.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","twitter_title":"Electricity demand forecasting using machine learning","twitter_description":"In this post a predictive model for the consumption of electrical energy is built.","twitter_image":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/electricity-demand.webp","twitter_site":"@NeuralDesigner","twitter_misc":{"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/","url":"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/","name":"Forecast electricity demand using machine learning","isPartOf":{"@id":"https:\/\/www.neuraldesigner.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/#primaryimage"},"image":{"@id":"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/#primaryimage"},"thumbnailUrl":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/electricity-demand.webp","datePublished":"2023-08-31T10:59:22+00:00","dateModified":"2025-09-15T13:24:58+00:00","description":"Build a machine learning model using electricity demand and meteorological data to build a predictive electricity consumption model.","breadcrumb":{"@id":"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/#primaryimage","url":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/electricity-demand.webp","contentUrl":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/electricity-demand.webp","width":1200,"height":628},{"@type":"BreadcrumbList","@id":"https:\/\/www.neuraldesigner.com\/blog\/electricity_demand_forecasting\/#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":"Forecast electricity demand using 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\/3383","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\/20"}],"version-history":[{"count":0,"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/blog\/3383\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/media\/2260"}],"wp:attachment":[{"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/media?parent=3383"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/categories?post=3383"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/tags?post=3383"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}