<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Interpreting Neural Network in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/Interpreting-Neural-Network/m-p/250416#M3707</link>
    <description>&lt;P&gt;Hi Wendy,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the quick and good answer. I switched the target variable to a predicted one and rejected the old target variable.&lt;/P&gt;
&lt;P&gt;Afterwards I did a decision tree and a linear regression.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Benjamin&lt;/P&gt;</description>
    <pubDate>Tue, 16 Feb 2016 18:41:58 GMT</pubDate>
    <dc:creator>Benjamin8</dc:creator>
    <dc:date>2016-02-16T18:41:58Z</dc:date>
    <item>
      <title>Interpreting Neural Network</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Interpreting-Neural-Network/m-p/250372#M3705</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I created a neural network (NN) with one binary target variable and multiple input variables (interval scaling).&lt;/P&gt;
&lt;P&gt;After studying the literature I know NN ain't easy to interpret, hence I need therefore your help.&lt;/P&gt;
&lt;P&gt;In the output there is a table which shows how good all inputs predict the target variable. Is there a way to determine the input var, which predicts the best the targer variable?&lt;/P&gt;
&lt;P&gt;Or do you know another good way to interpret an NN with SAS EM?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;Benjamin&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2016 16:23:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Interpreting-Neural-Network/m-p/250372#M3705</guid>
      <dc:creator>Benjamin8</dc:creator>
      <dc:date>2016-02-16T16:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting Neural Network</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Interpreting-Neural-Network/m-p/250389#M3706</link>
      <description>&lt;P&gt;&lt;FONT color="#000000"&gt;A common approach is to train a decision tree using the predicted values from a neural network to get measures of variable importance for your inputs.&amp;nbsp; This decision tree is then essentially a surrogate model that acts as a proxy to the complex logic of the neural network. To do this in EM, you would attach a Metadata node after your Neural Network node and set the role to 'Target' for &lt;STRONG&gt;either&lt;/STRONG&gt;:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;- one of the columns of posterior probabilities from your Neural Network node, e.g&lt;/FONT&gt;. P_&lt;EM&gt;&lt;FONT color="#FF0000"&gt;Target&lt;/FONT&gt;&lt;FONT color="#0000FF"&gt;Event&amp;nbsp;&lt;/FONT&gt;&lt;/EM&gt;&lt;FONT color="#000000"&gt;where&amp;nbsp;&lt;EM&gt;&lt;FONT color="#FF0000"&gt;Target&amp;nbsp;&lt;/FONT&gt;&lt;/EM&gt;&lt;FONT color="#000000"&gt;is the name of your original binary target and&amp;nbsp;&lt;EM&gt;&lt;FONT color="#0000FF"&gt;Event&amp;nbsp;&lt;/FONT&gt;&lt;/EM&gt;&lt;FONT color="#000000"&gt;is the event level of the target, &lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#000000"&gt;- the predicted target, I_&lt;EM&gt;&lt;FONT color="#FF0000"&gt;Target&lt;/FONT&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#000000"&gt;The original target should be given the role 'Rejected' now. &amp;nbsp;Then run a Decision Tree to see what variables are important in the model.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#000000"&gt;You can similarly&amp;nbsp;get variable importance by including a Model Comparison or Score node after the Neural Network node in your flow, then a Reporter node at the end of the flow with the &lt;STRONG&gt;Nodes&lt;/STRONG&gt; property set to &lt;STRONG&gt;Summary&lt;/STRONG&gt;. &amp;nbsp;This also uses a decision tree to calculate variable importance.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#000000"&gt;Hope that helps,&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#000000"&gt;Wendy&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2016 16:10:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Interpreting-Neural-Network/m-p/250389#M3706</guid>
      <dc:creator>WendyCzika</dc:creator>
      <dc:date>2016-09-26T16:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting Neural Network</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Interpreting-Neural-Network/m-p/250416#M3707</link>
      <description>&lt;P&gt;Hi Wendy,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the quick and good answer. I switched the target variable to a predicted one and rejected the old target variable.&lt;/P&gt;
&lt;P&gt;Afterwards I did a decision tree and a linear regression.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Benjamin&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2016 18:41:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Interpreting-Neural-Network/m-p/250416#M3707</guid>
      <dc:creator>Benjamin8</dc:creator>
      <dc:date>2016-02-16T18:41:58Z</dc:date>
    </item>
  </channel>
</rss>

