{"id":3528,"date":"2023-08-31T11:12:58","date_gmt":"2023-08-31T11:12:58","guid":{"rendered":"https:\/\/neuraldesigner.com\/learning\/wind-turbines\/"},"modified":"2025-09-09T18:10:03","modified_gmt":"2025-09-09T16:10:03","slug":"wind-turbines","status":"publish","type":"learning","link":"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/","title":{"rendered":"Model the power curve of a turbine with machine learning"},"content":{"rendered":"<p>Using actual data from a wind turbine field and a neural network, we will develop a machine learning model that can predict the theoretical power curve of a wind turbine based on wind speed.<\/p>\n<p>Wind power is a free and clean alternative to traditional fossil fuels. The theoretical power generated by wind turbines can be easily calculated using a specific equation.<\/p>\n<p>However, to achieve a more realistic solution that takes into account experimental factors outside the ideal modeling, we can utilize a Machine Learning approach.<\/p>\n<section>This example is solved with <a href=\"https:\/\/www.neuraldesigner.com\/\">Neural Designer<\/a>.\u00a0You can use the <a style=\"font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight ); background-color: #ffffff;\" href=\"https:\/\/www.neuraldesigner.com\/free-trial\">free trial<\/a> to understand how the solution is achieved step by step.<\/p>\n<h2>Contents<\/h2>\n<ol>\n<li><a href=\"#ApplicationType\">Application type<\/a>.<\/li>\n<li><a href=\"#DataSet\">Data set<\/a>.<\/li>\n<li><a href=\"#NeuralNetwork\">Neural network<\/a>.<\/li>\n<li><a href=\"#TrainingStrategy\">Training strategy<\/a>.<\/li>\n<li><a href=\"#ModelSelection\">Model selection<\/a>.<\/li>\n<li><a href=\"#TestingAnalysis\">Testing analysis<\/a>.<\/li>\n<li><a href=\"#ModelDeployment\">Model deployment<\/a>.<\/li>\n<\/ol>\n<\/section>\n<section id=\"ApplicationType\">\n<h2>1. Application type<\/h2>\n<p>The variable to be predicted is continuous (power). Therefore, this is an <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/neural-networks-applications#Approximation\">approximation<\/a> project.<\/p>\n<p>The primary goal here is to model energy production as a function of wind speed.<\/p>\n<\/section>\n<section id=\"DataSet\">\n<h2>2. Data set<\/h2>\n<p>The first step is to prepare the <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set\">data set<\/a>, which is the source of information for the approximation problem.<\/p>\n<p>It consists of:<\/p>\n<ul>\n<li>Data source.<\/li>\n<li>Variables.<\/li>\n<li>Instances.<\/li>\n<\/ul>\n<p>The file <a href=\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/10\/wind-turbine-clean.csv\">wind-turbine.csv<\/a> contains the data for this example.<\/p>\n<p>Here, the number of variables (columns) is 2, and the number of instances (rows) is 48007.<\/p>\n<p>We have the following variables for this analysis:<\/p>\n<ul>\n<li><b>wind-speed<\/b>, the wind speed at the hub height of the turbine, in meters per second.<\/li>\n<li><b>power<\/b>, the power generated by the turbine for that moment, in kilowatts.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>Our <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#TargetVariables\">target variable<\/a> will be the last one, power.<\/p>\n<p>The <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#Instances\">instances<\/a> are divided into training, selection, and testing subsets. They represent 60%, 20%, and 20% of the original instances, respectively, and are split at random.<\/p>\n<p>Calculating the data <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#Distributions\">distributions<\/a> helps us verify the accuracy of the available information and identify anomalies. The following chart shows the histogram for the power-generated variable:<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/wind-turbine-power-distribution.webp\" \/><\/p>\n<p>It is also interesting to look for dependencies between input and target variables. To do that, we can calculate an\u00a0<a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#InputsTargetsCorrelations\" target=\"_blank\" rel=\"noopener\">input-targets correlation<\/a> table.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/wind-turbine-correlations.webp\" \/><\/p>\n<p>As expected, there is a high correlation between wind speed and the energy produced by the turbines.<\/p>\n<p>Next, we plot a <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#ScatterCharts\">scatter chart<\/a>.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/wind-turbine-power-vs-wind-speed.webp\" \/><\/p>\n<p>Here, we observe that the power generated increases linearly once a threshold wind level is surpassed until reaching an upper bound. Beyond this point, regardless of how much the wind speed exceeds the threshold, the power generated remains constant.<\/p>\n<\/section>\n<section>\n<h3 id=\"NeuralNetwork\">3. Neural network<\/h3>\n<p>The second step is to build a neural network that represents the approximation function. Approximation problems are typically composed of:<\/p>\n<ul>\n<li>Scaling layer.<\/li>\n<li>Perceptron layers.<\/li>\n<li>Unscaling layer.<\/li>\n<\/ul>\n<p>The neural network has 1 input (wind speed) and 1 output (power).<\/p>\n<p>The <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/neural-network#ScalingLayer\">scaling layer<\/a> contains the statistics of the inputs. We use the automatic setting for this layer to accommodate the best scaling technique for our data.<\/p>\n<p>We use 2 perceptron layers here:<\/p>\n<ul>\n<li>The first perceptron layer has 1 input, 3 neurons, and a <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/neural-network#HyperbolicTangentActivationFunction\">hyperbolic tangent activation function<\/a>.<\/li>\n<li>The second perceptron layer has 3 inputs, 1 neuron, and a <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/neural-network#LinearActivationFunction\">linear activation function<\/a>.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>The <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/neural-network#UnscalingLayer\">unscaling layer<\/a> contains the statistics of the outputs. We use the automatic method as before.<\/p>\n<p>The next graph represents the neural network for this example.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/wind-turbine-initial-neural-network.webp\" \/><\/p>\n<\/section>\n<section id=\"TrainingStrategy\">\n<h2>4. Training strategy<\/h2>\n<p>The fourth step is to select an appropriate <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/training-strategy\">training strategy<\/a>. It comprises two parameters:<\/p>\n<ul>\n<li>Loss index.<\/li>\n<li>Optimization algorithm.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>The <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/training-strategy#LossIndex\">loss index<\/a> defines what the neural network will learn. It comprises an <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/training-strategy#ErrorTerm\">error term<\/a> and a <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/training-strategy#RegularizationTerm\">regularization term<\/a>.<\/p>\n<p>We choose the <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/training-strategy#NormalizedSquaredError\">normalized squared<\/a> error as the error term. It divides the squared error between the neural network&#8217;s outputs and the targets in the data set by its normalization coefficient. If the normalized squared error has a value of 1, then the neural network is predicting the data &#8216;in the mean&#8217;, while a value of zero means a perfect prediction of the data. This error term does not have any parameters to set.<\/p>\n<p>The regularization term is the <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/training-strategy#L2Regularization\">L2 regularization<\/a>. To control the neural network&#8217;s complexity, we adjust its parameters by reducing their values. We use a weak weight for this regularization term.<\/p>\n<p>The <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/training-strategy#OptimizationAlgorithm\">optimization algorithm<\/a> is responsible for searching for the neural network parameters that minimize the loss index. Here, we chose the <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/training-strategy#QuasiNewtonMethod\">quasi-Newton method<\/a> as an optimization algorithm.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/wind-turbine-training-history.webp\" \/><\/p>\n<p>The following chart illustrates how the training (blue) and selection (orange) errors decrease with the number of epochs during the training process. The final values are <b>training error = 0.00857 NSE<\/b> and <b>selection error = 0.00869 NSE<\/b>, respectively.<\/p>\n<\/section>\n<section id=\"ModelSelection\">\n<h2>5. Model selection<\/h2>\n<p><a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/model-selection\">Model selection<\/a> algorithms\u00a0enhance the generalization performance of the neural network. As the selection error we have achieved so far is minimal (0.00869 NSE), this algorithm is unnecessary here.<\/p>\n<\/section>\n<section id=\"TestingAnalysis\">\n<h2>6. Testing analysis<\/h2>\n<p>The purpose of the <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/testing-analysis\">testing analysis<\/a> is to validate the generalization capabilities of the neural network. We use the <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/data-set#TestingInstances\">testing instances<\/a> in the data set, which have never been used before.<\/p>\n<p>A standard testing method in approximation applications is to perform a <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/testing-analysis#LinearRegressionAnalysis\">linear regression analysis<\/a> between the predicted and the real pollutant level values.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/wind-turbine-linear-regression-analysis.webp\" \/><\/p>\n<p>For a perfect fit, the correlation coefficient R2 would be 1.\u00a0<span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">With\u00a0<strong>R2 = 0.996<\/strong>, the neural network accurately predicts the testing data<\/span>.<\/p>\n<\/section>\n<section id=\"ModelDeployment\">\n<h2>7. Model deployment<\/h2>\n<p>In the <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/model-deployment\">model deployment<\/a> phase, the neural network is used to predict outputs for inputs that it has not seen before.<\/p>\n<p>We can calculate the <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/model-deployment#NeuralNetworkOutputs\">neural network outputs<\/a> for a given set of inputs:<\/p>\n<ul>\n<li>wind-speed: 7.465 meters per second.<\/li>\n<li>power: 1166.580 kilowatts.<\/li>\n<\/ul>\n<p><a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/model-deployment#DirectionalOutputs\">Directional outputs<\/a> plot the neural network outputs through some reference points.<\/p>\n<p>The reference point for the plot is the one we show next.<\/p>\n<ul>\n<li>wind-speed: 7.465 meters per second.<\/li>\n<\/ul>\n<p>We can see here how the wind speed to solar noon affects the power generated:<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/wind-turbine-power-wind-speed-directional-output.webp\" \/><\/p>\n<p>This application finds its true meaning when comparing the mean quadratic error of the fabricant&#8217;s calculations, using the theoretical turbine power equation (1.95%) versus our model&#8217;s error (1.41%), resulting in a 27.69% relative improvement.<br \/>\nOur model performs better because it considers the actual empirical data instead of a physical approximation.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.neuraldesigner.com\/images\/wind-turbine-mse-improvement.webp\" \/><\/p>\n<p>The <a href=\"https:\/\/www.neuraldesigner.com\/learning\/tutorials\/model-deployment#MathematicalExpression\">mathematical expression<\/a> represented by the predictive model is displayed next:<\/p>\n<pre>scaled_wind-speed = wind-speed*(1+1)\/(25.20599937-(0))-0*(1+1)\/(25.20599937-0)-1; \r\nperceptron_layer_output_0 = tanh[ -0.0837533 + (scaled_wind-speed*-0.297207) ];\r\nperceptron_layer_output_1 = tanh[ -0.0199511 + (scaled_wind-speed*0.654869) ];\r\nperceptron_layer_output_2 = tanh[ 0.811123 + (scaled_wind-speed*2.76357) ];\r\nperceptron_layer_output_0 = [ -0.128215 + (perceptron_layer_output_0*0.290953)+ (perceptron_layer_output_1*-0.775739)+ (perceptron_layer_output_2*1.48548) ];\r\nunscaling_layer_output_0 = perceptron_layer_output_0*(3618.72998+2.471410036)\/(1+1)-2.471410036+1*(3618.72998+2.471410036)\/(1+1);\r\n<\/pre>\n<\/section>\n<section id=\"TutorialVideo\">\n<h2>8. Video tutorial<\/h2>\n<p>You can watch the step-by-step tutorial video below to help you complete this Machine Learning example<br \/>\nfor free using the powerful machine learning software <a href=\"https:\/\/www.neuraldesigner.com\/free-trial\">Neural Designer<\/a>.<\/p>\n<p><iframe src=\"https:\/\/www.youtube.com\/embed\/gmYtLk1SeP8\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><\/iframe><\/p>\n<\/section>\n<section>\n<h2>References<\/h2>\n<ul>\n<li>Erisen, B. Wind Turbine Scada Dataset. 2018.<\/li>\n<\/ul>\n<\/section>\n<section>\n<h2>Related posts<\/h2>\n<\/section>\n","protected":false},"author":13,"featured_media":1293,"template":"","categories":[29],"tags":[44],"class_list":["post-3528","learning","type-learning","status-publish","has-post-thumbnail","hentry","category-examples","tag-energy"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Model the power curve of a turbine with machine learning<\/title>\n<meta name=\"description\" content=\"Build a machine learning model to model the theoretical power curve of a wind turbine based on the wind speed.\" \/>\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\/learning\/examples\/wind-turbines\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Modeling the Power Curve of a turbine with Machine Learning\" \/>\n<meta property=\"og:description\" content=\"In this example, we model the Theoretical Power Curve of a wind turbine based on the wind speed, using machine learning.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/\" \/>\n<meta property=\"og:site_name\" content=\"Neural Designer\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-09T16:10:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/wind-turbine.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=\"Modeling the Power Curve of a turbine with Machine Learning\" \/>\n<meta name=\"twitter:description\" content=\"In this example, we model the Theoretical Power Curve of a wind turbine based on the wind speed, using machine learning.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/wind-turbine.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\/learning\/examples\/wind-turbines\/\",\"url\":\"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/\",\"name\":\"Model the power curve of a turbine with machine learning\",\"isPartOf\":{\"@id\":\"https:\/\/www.neuraldesigner.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/wind-turbine.webp\",\"datePublished\":\"2023-08-31T11:12:58+00:00\",\"dateModified\":\"2025-09-09T16:10:03+00:00\",\"description\":\"Build a machine learning model to model the theoretical power curve of a wind turbine based on the wind speed.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/#primaryimage\",\"url\":\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/wind-turbine.webp\",\"contentUrl\":\"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/wind-turbine.webp\",\"width\":1200,\"height\":628},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.neuraldesigner.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Learning\",\"item\":\"https:\/\/www.neuraldesigner.com\/learning\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Model the power curve of a turbine 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":"Model the power curve of a turbine with machine learning","description":"Build a machine learning model to model the theoretical power curve of a wind turbine based on the wind speed.","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\/learning\/examples\/wind-turbines\/","og_locale":"en_US","og_type":"article","og_title":"Modeling the Power Curve of a turbine with Machine Learning","og_description":"In this example, we model the Theoretical Power Curve of a wind turbine based on the wind speed, using machine learning.","og_url":"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/","og_site_name":"Neural Designer","article_modified_time":"2025-09-09T16:10:03+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/wind-turbine.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","twitter_title":"Modeling the Power Curve of a turbine with Machine Learning","twitter_description":"In this example, we model the Theoretical Power Curve of a wind turbine based on the wind speed, using machine learning.","twitter_image":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/wind-turbine.webp","twitter_site":"@NeuralDesigner","twitter_misc":{"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/","url":"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/","name":"Model the power curve of a turbine with machine learning","isPartOf":{"@id":"https:\/\/www.neuraldesigner.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/#primaryimage"},"image":{"@id":"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/#primaryimage"},"thumbnailUrl":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/wind-turbine.webp","datePublished":"2023-08-31T11:12:58+00:00","dateModified":"2025-09-09T16:10:03+00:00","description":"Build a machine learning model to model the theoretical power curve of a wind turbine based on the wind speed.","breadcrumb":{"@id":"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/#primaryimage","url":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/wind-turbine.webp","contentUrl":"https:\/\/www.neuraldesigner.com\/wp-content\/uploads\/2023\/06\/wind-turbine.webp","width":1200,"height":628},{"@type":"BreadcrumbList","@id":"https:\/\/www.neuraldesigner.com\/learning\/examples\/wind-turbines\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.neuraldesigner.com\/"},{"@type":"ListItem","position":2,"name":"Learning","item":"https:\/\/www.neuraldesigner.com\/learning\/"},{"@type":"ListItem","position":3,"name":"Model the power curve of a turbine 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\/learning\/3528","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/learning"}],"about":[{"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/types\/learning"}],"author":[{"embeddable":true,"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/users\/13"}],"version-history":[{"count":0,"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/learning\/3528\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/media\/1293"}],"wp:attachment":[{"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/media?parent=3528"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/categories?post=3528"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.neuraldesigner.com\/api\/wp\/v2\/tags?post=3528"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}