{"id":875,"date":"2017-01-28T21:56:35","date_gmt":"2017-01-28T21:56:35","guid":{"rendered":"http:\/\/intelligentonlinetools.com\/blog\/?p=875"},"modified":"2017-02-05T22:50:07","modified_gmt":"2017-02-05T22:50:07","slug":"iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters","status":"publish","type":"post","link":"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/","title":{"rendered":"Iris Plant Classification Using Neural Network &#8211; Online Experiments with Normalization and Other Parameters"},"content":{"rendered":"<p>Do we need to normalize input data for neural network? How differently will be results from running normalized and non normalized data? This will be explored in the post using <a href=\"http:\/\/intelligentonlinetools.com\/cgi-bin\/analytics\/ml.cgi?model_name_selection=Feedforward Neural Network (GD)\" target=\"_blank\">Online Machine Learning Algorithms<\/a> tool for classification of iris data set with feed-forward neural network. <\/p>\n<p><strong>Feed-forward Neural Network<\/strong><br \/>\nFeed-forward neural networks are commonly used for classification. In this example we choose feed-forward neural network with back propagation training and gradient descent optimization method. <\/p>\n<p>Our neural network has one hidden layer. The number of neuron units in this hidden layer and learning rate can be set by user. We do not need to code neural network because we use online tool that is taking training, testing data, number of neurons in hidden layer and learning rate parameters as input.  <\/p>\n<p>The output from this tool is classification results for testing data set, neural network weights and deltas at different iterations.<\/p>\n<p><strong>Data Set<\/strong><br \/>\nAs mentioned above we use iris data set for data input to neural network. The data set contains 3 classes of 50 instances each, where each class refers to a type of iris plant. [1]  We remove first 3 rows for each class and save for testing data set. Thus the input data set has 141 rows and testing data set has 9 rows.  <\/p>\n<p><strong>Normalization<\/strong><br \/>\nWe run neural network first time without normalization of input data.  Then we run neural network with normalized data.<br \/>\nWe use min max normalization which can be described by formula  [2]:<br \/>\n  <strong> xij = (xij &#8211; colmmin) \/(colmmax &#8211; colmmin)<\/strong><\/p>\n<p>Where<br \/>\n colmmin = minimum value of the column<br \/>\n colmmax = maximum value of the column<br \/>\n xij = x(data item) present at ithrow and jthcolumn<\/p>\n<p>Normalization is applied to both X and Y,   so the possible values for Y become 0, 05, 1<br \/>\nand X become like :<br \/>\n0.083333333\t0.458333333\t0.084745763\t0.041666667<\/p>\n<p>You can view normalized data at this link : <a href=\"http:\/\/intelligentonlinetools.com\/blog\/2017\/02\/02\/iris-data-set-normalized-data\" target=\"_blank\">Iris Data Set &#8211; Normalized Data<\/a><\/p>\n<p><strong>Online Tool<\/strong><br \/>\nOnce data is ready we can to load data to neural network and run classification. Here are the steps how to use online Machine Learning Algorithms tool:<br \/>\n1.Access the link <a href=\"http:\/\/intelligentonlinetools.com\/cgi-bin\/analytics\/ml.cgi?model_name_selection=Feedforward Neural Network (GD)\" target=\"_blank\">Online Machine Learning Algorithms<\/a>  with feed-forward neural network.<br \/>\n2.Select algorithm and click <em>Load parameters for this model<\/em>.<br \/>\n3.Input the data that you want to run.<br \/>\n4.Click <em>Run now<\/em>.<br \/>\n5.Click <em>results<\/em> link<br \/>\n6.Click <em>Refresh<\/em> button on this new page, you maybe will need click few times untill you see data output.<br \/>\n7.Scroll to the bottom page to see calculations.<br \/>\nFor more detailed instruction use this link: <a href=\"http:\/\/intelligentonlinetools.com\/blog\/2017\/02\/02\/how-to-run-online-machine-learning-algorithms-tool\" target=\"_blank\">How to Run Online Machine Learning Algorithms Tool<\/a><\/p>\n<p><strong>Experiments<\/strong><br \/>\nWe do 4 experiments as shown in the table below: 1 without normalization, and 3 with normalization and various learning rate and number of neurons hidden. Results are shown in the same table and the error graph shown below under the table. When iris data set was inputted without normalization,  the text label is changed to numerical variable with values -1,0,1  The result is not satisfying with needed accuracy level.  So decision is made to normalize data using min max method.<\/p>\n<p>Here is the sample result from the last experiment, with the lowest error. The learning rate is 0.1 and the number of hidden neurons is 36.  The delta error in the end of training is 1.09.<\/p>\n<p>[[ 0.00416852]<br \/>\n[ 0.01650389]<br \/>\n[ 0.01021347]<br \/>\n[ 0.43996485]<br \/>\n[ 0.50235484]<br \/>\n[ 0.58338683]<br \/>\n[ 0.80222148]<br \/>\n[ 0.92640374]<br \/>\n[ 0.93291573]] <\/p>\n<p><strong>Results<\/strong><\/p>\n<table>\n<tr>\n<td>\nNorma<br \/>lization\n<\/td>\n<td>Learn. Rate<\/td>\n<td>Hidden units #<\/td>\n<td>\nCorrect\n<\/td>\n<td>\nTotal\n<\/td>\n<td>\nAccuracy\n<\/td>\n<td>\nDelta Error\n<\/td>\n<\/tr>\n<tr>\n<td>\nNo<\/p>\n<\/td>\n<td>0.5<\/td>\n<td>4<\/td>\n<td>\n3\n<\/td>\n<td>\n9\n<\/td>\n<td>\n33%\n<\/td>\n<td>\n9.7\n<\/td>\n<\/tr>\n<tr>\n<td>\nYes (Min Max)<\/p>\n<\/td>\n<td>0.5<\/td>\n<td>4<\/td>\n<td>\n8\n<\/td>\n<td>\n9\n<\/td>\n<td>\n89%\n<\/td>\n<td>\n1.25\n<\/td>\n<\/tr>\n<tr>\n<td>\nYes (Min Max)<\/p>\n<\/td>\n<td>0.1<\/td>\n<td>4<\/td>\n<td>\n9\n<\/td>\n<td>\n9\n<\/td>\n<td>\n100%\n<\/td>\n<td>\n1.19\n<\/td>\n<\/tr>\n<tr>\n<td>\nYes (Min Max)<\/p>\n<\/td>\n<td>0.1<\/td>\n<td>36<\/td>\n<td>\n9\n<\/td>\n<td>\n9\n<\/td>\n<td>\n100%\n<\/td>\n<td>\n1.09\n<\/td>\n<\/tr>\n<\/table>\n<p><img data-attachment-id=\"952\" data-permalink=\"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/delta-error-graph-from-iris-data-set-36-neurons\/#main\" data-orig-file=\"http:\/\/intelligentonlinetools.com\/blog\/wp-content\/uploads\/2017\/01\/delta-error-graph-from-iris-data-set-36-neurons.png\" data-orig-size=\"1007,774\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"delta error graph from iris data set 36 neurons\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"http:\/\/intelligentonlinetools.com\/blog\/wp-content\/uploads\/2017\/01\/delta-error-graph-from-iris-data-set-36-neurons-300x231.png\" data-large-file=\"http:\/\/intelligentonlinetools.com\/blog\/wp-content\/uploads\/2017\/01\/delta-error-graph-from-iris-data-set-36-neurons.png\" decoding=\"async\" loading=\"lazy\" src=\"http:\/\/intelligentonlinetools.com\/blog\/wp-content\/uploads\/2017\/01\/delta-error-graph-from-iris-data-set-36-neurons-300x231.png\" alt=\"\" width=\"300\" height=\"231\" class=\"alignnone size-medium wp-image-952\" srcset=\"http:\/\/intelligentonlinetools.com\/blog\/wp-content\/uploads\/2017\/01\/delta-error-graph-from-iris-data-set-36-neurons-300x231.png 300w, http:\/\/intelligentonlinetools.com\/blog\/wp-content\/uploads\/2017\/01\/delta-error-graph-from-iris-data-set-36-neurons-768x590.png 768w, http:\/\/intelligentonlinetools.com\/blog\/wp-content\/uploads\/2017\/01\/delta-error-graph-from-iris-data-set-36-neurons.png 1007w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/p>\n<p><strong>Conclusion<\/strong><br \/>\nNormalization can make huge difference on results.  Further improvements are posible by adjusting learning rate or number hidden units in the hidden layer. <\/p>\n<p><strong>References<\/strong><\/p>\n<p>1. <a href=https:\/\/archive.ics.uci.edu\/ml\/datasets\/Iris target=\"_blank\">Iris Data Set <\/a><br \/>\n2. <a href=http:\/\/airccse.org\/journal\/ijsc\/papers\/2112ijsc07.pdf target=\"_blank\">AN APPROACH FOR IRIS PLANT CLASSIFICATION USING NEURAL NETWORK<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Do we need to normalize input data for neural network? How differently will be results from running normalized and non normalized data? This will be explored in the post using Online Machine Learning Algorithms tool for classification of iris data set with feed-forward neural network. Feed-forward Neural Network Feed-forward neural networks are commonly used for &#8230; <a title=\"Iris Plant Classification Using Neural Network &#8211; Online Experiments with Normalization and Other Parameters\" class=\"read-more\" href=\"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"jetpack_publicize_message":"","jetpack_is_tweetstorm":false,"jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":[]},"categories":[5,2,9,10],"tags":[],"jetpack_publicize_connections":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Iris Plant Classification Using Neural Network - Online Experiments with Normalization and Other Parameters - Machine Learning Applications<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Iris Plant Classification Using Neural Network - Online Experiments with Normalization and Other Parameters - Machine Learning Applications\" \/>\n<meta property=\"og:description\" content=\"Do we need to normalize input data for neural network? How differently will be results from running normalized and non normalized data? This will be explored in the post using Online Machine Learning Algorithms tool for classification of iris data set with feed-forward neural network. Feed-forward Neural Network Feed-forward neural networks are commonly used for ... Read more\" \/>\n<meta property=\"og:url\" content=\"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/\" \/>\n<meta property=\"og:site_name\" content=\"Machine Learning Applications\" \/>\n<meta property=\"article:published_time\" content=\"2017-01-28T21:56:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-02-05T22:50:07+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/intelligentonlinetools.com\/blog\/wp-content\/uploads\/2017\/01\/delta-error-graph-from-iris-data-set-36-neurons-300x231.png\" \/>\n<meta name=\"author\" content=\"owygs156\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"owygs156\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/\",\"url\":\"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/\",\"name\":\"Iris Plant Classification Using Neural Network - Online Experiments with Normalization and Other Parameters - Machine Learning Applications\",\"isPartOf\":{\"@id\":\"http:\/\/intelligentonlinetools.com\/blog\/#website\"},\"datePublished\":\"2017-01-28T21:56:35+00:00\",\"dateModified\":\"2017-02-05T22:50:07+00:00\",\"author\":{\"@id\":\"http:\/\/intelligentonlinetools.com\/blog\/#\/schema\/person\/7a886dc5eb9758369af2f6d2cb342478\"},\"breadcrumb\":{\"@id\":\"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/intelligentonlinetools.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Iris Plant Classification Using Neural Network &#8211; Online Experiments with Normalization and Other Parameters\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/intelligentonlinetools.com\/blog\/#website\",\"url\":\"http:\/\/intelligentonlinetools.com\/blog\/\",\"name\":\"Machine Learning Applications\",\"description\":\"Artificial intelligence, data mining and machine learning for building web based tools and services.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/intelligentonlinetools.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"http:\/\/intelligentonlinetools.com\/blog\/#\/schema\/person\/7a886dc5eb9758369af2f6d2cb342478\",\"name\":\"owygs156\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/intelligentonlinetools.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/2.gravatar.com\/avatar\/b351def598609cb4c0b5bca26497c7e5?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/2.gravatar.com\/avatar\/b351def598609cb4c0b5bca26497c7e5?s=96&d=mm&r=g\",\"caption\":\"owygs156\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Iris Plant Classification Using Neural Network - Online Experiments with Normalization and Other Parameters - Machine Learning Applications","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":"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/","og_locale":"en_US","og_type":"article","og_title":"Iris Plant Classification Using Neural Network - Online Experiments with Normalization and Other Parameters - Machine Learning Applications","og_description":"Do we need to normalize input data for neural network? How differently will be results from running normalized and non normalized data? This will be explored in the post using Online Machine Learning Algorithms tool for classification of iris data set with feed-forward neural network. Feed-forward Neural Network Feed-forward neural networks are commonly used for ... Read more","og_url":"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/","og_site_name":"Machine Learning Applications","article_published_time":"2017-01-28T21:56:35+00:00","article_modified_time":"2017-02-05T22:50:07+00:00","og_image":[{"url":"http:\/\/intelligentonlinetools.com\/blog\/wp-content\/uploads\/2017\/01\/delta-error-graph-from-iris-data-set-36-neurons-300x231.png"}],"author":"owygs156","twitter_card":"summary_large_image","twitter_misc":{"Written by":"owygs156","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/","url":"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/","name":"Iris Plant Classification Using Neural Network - Online Experiments with Normalization and Other Parameters - Machine Learning Applications","isPartOf":{"@id":"http:\/\/intelligentonlinetools.com\/blog\/#website"},"datePublished":"2017-01-28T21:56:35+00:00","dateModified":"2017-02-05T22:50:07+00:00","author":{"@id":"http:\/\/intelligentonlinetools.com\/blog\/#\/schema\/person\/7a886dc5eb9758369af2f6d2cb342478"},"breadcrumb":{"@id":"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/intelligentonlinetools.com\/blog\/2017\/01\/28\/iris-plant-classification-using-neural-network-online-experiments-with-normalization-and-other-parameters\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/intelligentonlinetools.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Iris Plant Classification Using Neural Network &#8211; Online Experiments with Normalization and Other Parameters"}]},{"@type":"WebSite","@id":"http:\/\/intelligentonlinetools.com\/blog\/#website","url":"http:\/\/intelligentonlinetools.com\/blog\/","name":"Machine Learning Applications","description":"Artificial intelligence, data mining and machine learning for building web based tools and services.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/intelligentonlinetools.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"http:\/\/intelligentonlinetools.com\/blog\/#\/schema\/person\/7a886dc5eb9758369af2f6d2cb342478","name":"owygs156","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/intelligentonlinetools.com\/blog\/#\/schema\/person\/image\/","url":"http:\/\/2.gravatar.com\/avatar\/b351def598609cb4c0b5bca26497c7e5?s=96&d=mm&r=g","contentUrl":"http:\/\/2.gravatar.com\/avatar\/b351def598609cb4c0b5bca26497c7e5?s=96&d=mm&r=g","caption":"owygs156"}}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p7h1IJ-e7","jetpack-related-posts":[{"id":1178,"url":"http:\/\/intelligentonlinetools.com\/blog\/2017\/05\/14\/time-series-prediction-with-convolutional-neural-networks\/","url_meta":{"origin":875,"position":0},"title":"Forecasting Time Series Data with Convolutional Neural Networks","date":"May 14, 2017","format":false,"excerpt":"Convolutional neural networks(CNN) is increasingly important concept in computer science and finds more and more applications in different fields. Many posts on the web are about applying convolutional neural networks for image classification as CNN is very useful type of neural networks for image classification. But convolutional neural networks can\u2026","rel":"","context":"In &quot;Artificial Intelligence&quot;","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/intelligentonlinetools.com\/blog\/wp-content\/uploads\/2017\/05\/time-series-LSTM-300x164.png?resize=350%2C200","width":350,"height":200},"classes":[]},{"id":621,"url":"http:\/\/intelligentonlinetools.com\/blog\/2016\/10\/09\/online-resources-for-neural-networks-with-python\/","url_meta":{"origin":875,"position":1},"title":"Online Resources for Neural Networks with Python","date":"October 9, 2016","format":false,"excerpt":"The neural network field enjoys now a resurgence of interest. New training techniques made training deep networks feasible. With deeper networks, more training data and powerful new hardware to make it all work, deep neural networks (or \u201cdeep learning\u201d systems) suddenly began making rapid progress in areas such as speech\u2026","rel":"","context":"In &quot;Artificial Intelligence&quot;","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2194,"url":"http:\/\/intelligentonlinetools.com\/blog\/2018\/08\/11\/applied-machine-learning-classification-for-decision-making\/","url_meta":{"origin":875,"position":2},"title":"Applied Machine Learning Classification for Decision Making","date":"August 11, 2018","format":false,"excerpt":"Making the good decision is the challenge that we often have. So, in this post, we will look at how applied machine learning classification can be used for the process of decision making. The simple and quick approach to make decision is follow our past experience of similar situations. Usually\u2026","rel":"","context":"In &quot;Artificial Intelligence&quot;","img":{"alt_text":"Decision Making","src":"https:\/\/i0.wp.com\/intelligentonlinetools.com\/blog\/wp-content\/uploads\/2018\/08\/signs-1172211_640-e1534384498570.jpg?resize=350%2C200","width":350,"height":200},"classes":[]},{"id":2259,"url":"http:\/\/intelligentonlinetools.com\/blog\/2018\/09\/06\/artificial-intelligence-neural-networks-applications-seismic-prospecting\/","url_meta":{"origin":875,"position":3},"title":"Artificial Intelligence &#8211; Neural Networks Applications in Seismic Prospecting","date":"September 6, 2018","format":false,"excerpt":"TUSHAR website Introduction Large volumes of hydrocarbons remain to be found in the world. Finding and extracting these hydrocarbons is difficult and expensive. We believe that under-utilization of data, and of the existing subsurface knowledge base, are at least partly responsible for the disappointing exploration performance. Furthermore, we argue that\u2026","rel":"","context":"In &quot;Neural Networks Applications&quot;","img":{"alt_text":"Global map","src":"https:\/\/i0.wp.com\/intelligentonlinetools.com\/blog\/wp-content\/uploads\/2018\/09\/global_map-e1536320690373.png?resize=350%2C200","width":350,"height":200},"classes":[]},{"id":9,"url":"http:\/\/intelligentonlinetools.com\/blog\/2016\/01\/30\/general-regression-neural-networks\/","url_meta":{"origin":875,"position":4},"title":"General Regression Neural Networks","date":"January 30, 2016","format":false,"excerpt":"General Regression Neural Networks (GRNN) is one of the type of neural networks with a one pass learning algorithm. The simplicity of algorithm for GRNN is one of the advantage of this neural network and many researchers use it. In one of recent paper was proposed algorithm that is using\u2026","rel":"","context":"Similar post","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1783,"url":"http:\/\/intelligentonlinetools.com\/blog\/2018\/01\/19\/machine-learning-stock-prediction-lstm-keras\/","url_meta":{"origin":875,"position":5},"title":"Machine Learning Stock Prediction with LSTM and Keras","date":"January 19, 2018","format":false,"excerpt":"In this post I will share experiments on machine learning stock prediction with LSTM and Keras with one step ahead. I tried to do first multiple steps ahead with few techniques described in the papers on the web. But I discovered that I need fully understand and test the simplest\u2026","rel":"","context":"In &quot;Machine Learning&quot;","img":{"alt_text":"Forecasting one step ahead LSTM 60","src":"https:\/\/i0.wp.com\/intelligentonlinetools.com\/blog\/wp-content\/uploads\/2018\/01\/Forecasting-one-step-ahead-LSTM-60-3_1_2018.png?resize=350%2C200","width":350,"height":200},"classes":[]}],"_links":{"self":[{"href":"http:\/\/intelligentonlinetools.com\/blog\/wp-json\/wp\/v2\/posts\/875"}],"collection":[{"href":"http:\/\/intelligentonlinetools.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/intelligentonlinetools.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/intelligentonlinetools.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/intelligentonlinetools.com\/blog\/wp-json\/wp\/v2\/comments?post=875"}],"version-history":[{"count":32,"href":"http:\/\/intelligentonlinetools.com\/blog\/wp-json\/wp\/v2\/posts\/875\/revisions"}],"predecessor-version":[{"id":963,"href":"http:\/\/intelligentonlinetools.com\/blog\/wp-json\/wp\/v2\/posts\/875\/revisions\/963"}],"wp:attachment":[{"href":"http:\/\/intelligentonlinetools.com\/blog\/wp-json\/wp\/v2\/media?parent=875"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/intelligentonlinetools.com\/blog\/wp-json\/wp\/v2\/categories?post=875"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/intelligentonlinetools.com\/blog\/wp-json\/wp\/v2\/tags?post=875"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}