<?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: bayes_motel &#8211; Bayesian classification for Ruby</title>
	<atom:link href="http://www.mikeperham.com/2010/04/28/bayes_motel-bayesian-classification-for-ruby/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikeperham.com/2010/04/28/bayes_motel-bayesian-classification-for-ruby/</link>
	<description>On Ruby, software and the Internet</description>
	<lastBuildDate>Tue, 07 Feb 2012 17:12:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Bayes Classification Update &#171; A Ruby Guy</title>
		<link>http://www.mikeperham.com/2010/04/28/bayes_motel-bayesian-classification-for-ruby/comment-page-1/#comment-1092</link>
		<dc:creator>Bayes Classification Update &#171; A Ruby Guy</dc:creator>
		<pubDate>Thu, 03 Mar 2011 16:14:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeperham.com/?p=540#comment-1092</guid>
		<description>[...] After I&#8217;ve gave up on that attempt I have tried the &lt;a href=&#8217;https://github.com/nragaz/classifier&#8216;&gt;classifier gem&lt;/a&gt; At first look it seemed to do exactly what I needed &#8211; Naive Bayes implementation, with document oriented API. Unfortunately, after running some tests I discovered that even though it&#8217;s called Bayes it doesn&#8217;t actually implement anything of the sort. The implementation is just a simple word counting implementation with all the related drawbacks (see also &lt;a href=&#8217;http://www.mikeperham.com/2010/04/28/bayes_motel-bayesian-classification-for-ruby/&#8216;&gt;here&lt;/a&gt;) [...]</description>
		<content:encoded><![CDATA[<p>[...] After I&#8217;ve gave up on that attempt I have tried the &lt;a href=&#8217;<a href="https://github.com/nragaz/classifier&#8216;&gt;classifier" rel="nofollow">https://github.com/nragaz/classifier&#8216;&gt;classifier</a> gem&lt;/a&gt; At first look it seemed to do exactly what I needed &#8211; Naive Bayes implementation, with document oriented API. Unfortunately, after running some tests I discovered that even though it&#8217;s called Bayes it doesn&#8217;t actually implement anything of the sort. The implementation is just a simple word counting implementation with all the related drawbacks (see also &lt;a href=&#8217;<a href="http://www.mikeperham.com/2010/04/28/bayes_motel-bayesian-classification-for-ruby/&#8216;&gt;here&lt;/a&#038;gt" rel="nofollow">http://www.mikeperham.com/2010/04/28/bayes_motel-bayesian-classification-for-ruby/&#8216;&gt;here&lt;/a&#038;gt</a> <img src='http://www.mikeperham.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Lind</title>
		<link>http://www.mikeperham.com/2010/04/28/bayes_motel-bayesian-classification-for-ruby/comment-page-1/#comment-709</link>
		<dc:creator>Joe Lind</dc:creator>
		<pubDate>Fri, 06 Aug 2010 12:35:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeperham.com/?p=540#comment-709</guid>
		<description>The plural of &#039;corpus&#039; is &#039;corpora&#039; (or &#039;corpuses&#039;).</description>
		<content:encoded><![CDATA[<p>The plural of &#8216;corpus&#8217; is &#8216;corpora&#8217; (or &#8216;corpuses&#8217;).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Perham</title>
		<link>http://www.mikeperham.com/2010/04/28/bayes_motel-bayesian-classification-for-ruby/comment-page-1/#comment-686</link>
		<dc:creator>Mike Perham</dc:creator>
		<pubDate>Wed, 30 Jun 2010 02:25:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeperham.com/?p=540#comment-686</guid>
		<description>it works with any hash of data, where each key is considered a different variable to track, thus &quot;multi-variate&quot;.

I&#039;m not familiar with your second question so I can&#039;t speculate.</description>
		<content:encoded><![CDATA[<p>it works with any hash of data, where each key is considered a different variable to track, thus &#8220;multi-variate&#8221;.</p>
<p>I&#8217;m not familiar with your second question so I can&#8217;t speculate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Hedrick</title>
		<link>http://www.mikeperham.com/2010/04/28/bayes_motel-bayesian-classification-for-ruby/comment-page-1/#comment-685</link>
		<dc:creator>Daniel Hedrick</dc:creator>
		<pubDate>Wed, 30 Jun 2010 01:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeperham.com/?p=540#comment-685</guid>
		<description>Very cool (a little late to the post)... Two questions (not having looked at the code yet):

1. Will this work on non-tweet corpii? I&#039;m guessing it would be pretty easy to abstract it, but your examples here and on github both use tweets for them.

2. Best guess, how much effort do you think it would take to incorporate a tournement-style classifier (a-la the fog creek blog post from a couple years back)? I&#039;ve been contemplating something similar and this might be an excellent starting point.</description>
		<content:encoded><![CDATA[<p>Very cool (a little late to the post)&#8230; Two questions (not having looked at the code yet):</p>
<p>1. Will this work on non-tweet corpii? I&#8217;m guessing it would be pretty easy to abstract it, but your examples here and on github both use tweets for them.</p>
<p>2. Best guess, how much effort do you think it would take to incorporate a tournement-style classifier (a-la the fog creek blog post from a couple years back)? I&#8217;ve been contemplating something similar and this might be an excellent starting point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Perham</title>
		<link>http://www.mikeperham.com/2010/04/28/bayes_motel-bayesian-classification-for-ruby/comment-page-1/#comment-605</link>
		<dc:creator>Mike Perham</dc:creator>
		<pubDate>Thu, 29 Apr 2010 21:52:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeperham.com/?p=540#comment-605</guid>
		<description>You can&#039;t combine two Corpi (?) today but you can persist one and use that instance for multiple training sessions.</description>
		<content:encoded><![CDATA[<p>You can&#8217;t combine two Corpi (?) today but you can persist one and use that instance for multiple training sessions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graham</title>
		<link>http://www.mikeperham.com/2010/04/28/bayes_motel-bayesian-classification-for-ruby/comment-page-1/#comment-604</link>
		<dc:creator>Graham</dc:creator>
		<pubDate>Thu, 29 Apr 2010 21:08:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikeperham.com/?p=540#comment-604</guid>
		<description>Very interesting.  Any thoughts on how you could combine a group of corpuses to aggregate training info?</description>
		<content:encoded><![CDATA[<p>Very interesting.  Any thoughts on how you could combine a group of corpuses to aggregate training info?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

