<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Feature selection</title>
	<atom:link href="http://www.dataminingblog.com/feature-selection/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dataminingblog.com/feature-selection/</link>
	<description>Data mining crossroads - research, applications, news, list of blogs and customized search engine about data mining.</description>
	<lastBuildDate>Tue, 07 Feb 2012 08:14:55 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Text Classification for Sentiment Analysis &#8211; Eliminate Low Information Features &#171;streamhacker.com</title>
		<link>http://www.dataminingblog.com/feature-selection/comment-page-1/#comment-78013</link>
		<dc:creator>Text Classification for Sentiment Analysis &#8211; Eliminate Low Information Features &#171;streamhacker.com</dc:creator>
		<pubDate>Wed, 16 Jun 2010 21:22:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.dataminingblog.com/feature-selection#comment-78013</guid>
		<description>[...] and the curse of dimensionality. When you use only the higher information features, you can increase performance while also decreasing the size of the model, which results in less memory usage along with faster [...]</description>
		<content:encoded><![CDATA[<p>[...] and the curse of dimensionality. When you use only the higher information features, you can increase performance while also decreasing the size of the model, which results in less memory usage along with faster [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sandro Saitta</title>
		<link>http://www.dataminingblog.com/feature-selection/comment-page-1/#comment-476</link>
		<dc:creator>Sandro Saitta</dc:creator>
		<pubDate>Mon, 19 Feb 2007 19:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dataminingblog.com/feature-selection#comment-476</guid>
		<description>Will and Damien, thanks for your complementary comments. I will have a look at this new book you mentioned as well as your blog.</description>
		<content:encoded><![CDATA[<p>Will and Damien, thanks for your complementary comments. I will have a look at this new book you mentioned as well as your blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: damien</title>
		<link>http://www.dataminingblog.com/feature-selection/comment-page-1/#comment-473</link>
		<dc:creator>damien</dc:creator>
		<pubDate>Sat, 10 Feb 2007 20:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dataminingblog.com/feature-selection#comment-473</guid>
		<description>This paper is indeed really good (it was the subject of one of the earliest posts on my &lt;a HREF=&quot;http://www.inma.ucl.ac.be/~francois/blog/entries/entry_12.php&quot; REL=&quot;nofollow&quot;&gt;blog&lt;/a&gt;)&lt;br/&gt;&lt;br/&gt;The authors have just edited a book that is also very well written. The first part is an introduction to feature selection and the second part presents the results of the feature selection contest that was help in 2003. See the website of the book here : &lt;a HREF=&quot;http://clopinet.com/isabelle/Projects/NIPS2003/call-for-papers.html&quot; REL=&quot;nofollow&quot;&gt;here&lt;br/&gt;&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>This paper is indeed really good (it was the subject of one of the earliest posts on my <a HREF="http://www.inma.ucl.ac.be/~francois/blog/entries/entry_12.php" REL="nofollow">blog</a>)</p>
<p>The authors have just edited a book that is also very well written. The first part is an introduction to feature selection and the second part presents the results of the feature selection contest that was help in 2003. See the website of the book here : <a HREF="http://clopinet.com/isabelle/Projects/NIPS2003/call-for-papers.html" REL="nofollow">here<br /></a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Will Dwinnell</title>
		<link>http://www.dataminingblog.com/feature-selection/comment-page-1/#comment-468</link>
		<dc:creator>Will Dwinnell</dc:creator>
		<pubDate>Thu, 08 Feb 2007 12:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dataminingblog.com/feature-selection#comment-468</guid>
		<description>I&#039;ve noticed that, among filter methods described in the literature, there seem to be 3 common approaches:&lt;br/&gt;&lt;br/&gt;&lt;b&gt;1.&lt;/b&gt; Seek correlation between individual predictors and the target and, simultaneously, lack of correlation among predictors (CFS, if I&#039;m not mistaken).&lt;br/&gt;&lt;br/&gt;&lt;b&gt;2.&lt;/b&gt; Seek a group predictors which provide high separation of target classes (Fisher discriminant method, Weiss and Indurkhya&#039;s &lt;i&gt;independent features&lt;/i&gt;).&lt;br/&gt;&lt;br/&gt;&lt;b&gt;3.&lt;/b&gt; Reduce predictors without regard to target (PCA, clustering of predictor variables).&lt;br/&gt;&lt;br/&gt;Lately, I&#039;ve been leaning heavily on my GA-driven implementation of Weiss and Indurkhya&#039;s approach (which seems to work very well for linear models), but am collecting a number of these techniques.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve noticed that, among filter methods described in the literature, there seem to be 3 common approaches:</p>
<p><b>1.</b> Seek correlation between individual predictors and the target and, simultaneously, lack of correlation among predictors (CFS, if I&#8217;m not mistaken).</p>
<p><b>2.</b> Seek a group predictors which provide high separation of target classes (Fisher discriminant method, Weiss and Indurkhya&#8217;s <i>independent features</i>).</p>
<p><b>3.</b> Reduce predictors without regard to target (PCA, clustering of predictor variables).</p>
<p>Lately, I&#8217;ve been leaning heavily on my GA-driven implementation of Weiss and Indurkhya&#8217;s approach (which seems to work very well for linear models), but am collecting a number of these techniques.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

