<?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 for Information Retrieval Blog</title>
	<atom:link href="http://blog.so8848.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.so8848.com</link>
	<description>REAL TIME DATA PROCESSING, DISTRIBUTED COMPUTING, PATTERN DISCOVERY</description>
	<lastBuildDate>Thu, 15 Sep 2011 15:48:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on 互信息 公式 &#8211;备忘 by JeffYe</title>
		<link>http://blog.so8848.com/2008/06/33261.html#comment-615</link>
		<dc:creator>JeffYe</dc:creator>
		<pubDate>Thu, 15 Sep 2011 15:48:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.5yiso.cn/2008/06/33261.html#comment-615</guid>
		<description>just a test tencent account login. 
Have Fun!</description>
		<content:encoded><![CDATA[<p>just a test tencent account login.<br />
Have Fun!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Going to industry or stay in academia? by Jeffye</title>
		<link>http://blog.so8848.com/2010/12/55821.html#comment-415</link>
		<dc:creator>Jeffye</dc:creator>
		<pubDate>Thu, 23 Dec 2010 15:37:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.zye.me/?p=55821#comment-415</guid>
		<description>Still thinking about it. Of course, it also depends on what choice I would have.</description>
		<content:encoded><![CDATA[<p>Still thinking about it. Of course, it also depends on what choice I would have.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Going to industry or stay in academia? by junge</title>
		<link>http://blog.so8848.com/2010/12/55821.html#comment-414</link>
		<dc:creator>junge</dc:creator>
		<pubDate>Mon, 20 Dec 2010 01:20:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.zye.me/?p=55821#comment-414</guid>
		<description>post 贴了两遍
and so what&#039;s your opinion?</description>
		<content:encoded><![CDATA[<p>post 贴了两遍<br />
and so what&#8217;s your opinion?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to efficiently use LOG4J? by Jeffye</title>
		<link>http://blog.so8848.com/2010/10/55809.html#comment-413</link>
		<dc:creator>Jeffye</dc:creator>
		<pubDate>Fri, 19 Nov 2010 21:26:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.zye.me/?p=55809#comment-413</guid>
		<description>HI. Bob. 
Recently, I am reading the code of LDA in LingPipe. 
The hyper-parameters alpha and beta are set to 0.1 and 0.01. Any citation for the default settings in the test code?</description>
		<content:encoded><![CDATA[<p>HI. Bob.<br />
Recently, I am reading the code of LDA in LingPipe.<br />
The hyper-parameters alpha and beta are set to 0.1 and 0.01. Any citation for the default settings in the test code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to efficiently use LOG4J? by Jeffye</title>
		<link>http://blog.so8848.com/2010/10/55809.html#comment-412</link>
		<dc:creator>Jeffye</dc:creator>
		<pubDate>Fri, 19 Nov 2010 21:23:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.zye.me/?p=55809#comment-412</guid>
		<description>Hi. Bob. I am glad you left me comments. 

Thanks for you kind advise. Actually, for the 2rd comment, in my application, the log level is controlled by a property file. Sometimes I set it to warn in order to save time. In addition, I should be more careful with the other problems you mentioned. 

Yes,  AbstractExternalizable is from LingPipe. But I added  a logger into it. LingPipe is very great, especially the documentation and tutorials. I can not imagine how you get all these work done almost all by yourself.</description>
		<content:encoded><![CDATA[<p>Hi. Bob. I am glad you left me comments. </p>
<p>Thanks for you kind advise. Actually, for the 2rd comment, in my application, the log level is controlled by a property file. Sometimes I set it to warn in order to save time. In addition, I should be more careful with the other problems you mentioned. </p>
<p>Yes,  AbstractExternalizable is from LingPipe. But I added  a logger into it. LingPipe is very great, especially the documentation and tutorials. I can not imagine how you get all these work done almost all by yourself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to efficiently use LOG4J? by Bob Carpenter</title>
		<link>http://blog.so8848.com/2010/10/55809.html#comment-411</link>
		<dc:creator>Bob Carpenter</dc:creator>
		<pubDate>Wed, 17 Nov 2010 19:36:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.zye.me/?p=55809#comment-411</guid>
		<description>You&#039;ve got lots of performance issues in that code snippet!  The biggest problem is the side effect that prints whether debug mode is turned on or not.  So your &quot;optimized&quot; version actually has different behavior because of the side effects of println().

1.  The recommended logger pattern&#039;s now with an object member variable rather than a static.  

2.  Log4J prints out the log level by default, so you don&#039;t need to append &quot;debug&quot;.

3.  In general, you want to use Integer.toString(i) instead of concatenating to the empty string.  Because System.out is a PrintStream, you can just use the method PrintStream.println(int), which will do the same thing.

And by the way, is that LingPipe&#039;s class AbstractExternalizable?  Or are there more classes named that in the wild?</description>
		<content:encoded><![CDATA[<p>You&#8217;ve got lots of performance issues in that code snippet!  The biggest problem is the side effect that prints whether debug mode is turned on or not.  So your &#8220;optimized&#8221; version actually has different behavior because of the side effects of println().</p>
<p>1.  The recommended logger pattern&#8217;s now with an object member variable rather than a static.  </p>
<p>2.  Log4J prints out the log level by default, so you don&#8217;t need to append &#8220;debug&#8221;.</p>
<p>3.  In general, you want to use Integer.toString(i) instead of concatenating to the empty string.  Because System.out is a PrintStream, you can just use the method PrintStream.println(int), which will do the same thing.</p>
<p>And by the way, is that LingPipe&#8217;s class AbstractExternalizable?  Or are there more classes named that in the wild?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SCI投稿常用英语 by Information Retrieval Blog » Blog Archive » SCI投稿常用英语 central university</title>
		<link>http://blog.so8848.com/2010/09/55793.html#comment-376</link>
		<dc:creator>Information Retrieval Blog » Blog Archive » SCI投稿常用英语 central university</dc:creator>
		<pubDate>Tue, 05 Oct 2010 16:35:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.zye.me/2010/09/55793.html#comment-376</guid>
		<description>[...] the original post:  Information Retrieval Blog » Blog Archive » SCI投稿常用英语          By admin &#124; category: University of TSUKUBA &#124; tags: applied-sciences, central-university, [...] </description>
		<content:encoded><![CDATA[<p>[...] the original post:  Information Retrieval Blog » Blog Archive » SCI投稿常用英语          By admin | category: University of TSUKUBA | tags: applied-sciences, central-university, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on fix problems in ubuntu kile:  multirow.sty&#8217; not found by Letícia</title>
		<link>http://blog.so8848.com/2009/05/51673.html#comment-321</link>
		<dc:creator>Letícia</dc:creator>
		<pubDate>Wed, 29 Sep 2010 17:35:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.so8848.com/?p=51673#comment-321</guid>
		<description>Thank you for posting the solution in the simplest way!</description>
		<content:encoded><![CDATA[<p>Thank you for posting the solution in the simplest way!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Computer Science Department Journal Rankings by Google hacking in China &#8211; weight loss diet &#124; how to lose weight fast &#124; Dieting and Steak</title>
		<link>http://blog.so8848.com/2010/08/55787.html#comment-373</link>
		<dc:creator>Google hacking in China &#8211; weight loss diet &#124; how to lose weight fast &#124; Dieting and Steak</dc:creator>
		<pubDate>Mon, 27 Sep 2010 14:23:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.zye.me/2010/08/55787.html#comment-373</guid>
		<description>[...] Information Retrieval Blog &#187; Blog Archive &#187; Notebook Science Sphere Journal Rankings [...] </description>
		<content:encoded><![CDATA[<p>[...] Information Retrieval Blog &raquo; Blog Archive &raquo; Notebook Science Sphere Journal Rankings [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SCI投稿常用英语 by SCI投稿常用英语« Information Retrieval Blog central university</title>
		<link>http://blog.so8848.com/2010/09/55793.html#comment-375</link>
		<dc:creator>SCI投稿常用英语« Information Retrieval Blog central university</dc:creator>
		<pubDate>Sat, 25 Sep 2010 06:58:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.zye.me/2010/09/55793.html#comment-375</guid>
		<description>[...] original here: SCI投稿常用英语« Information Retrieval Blog          By admin &#124; category: University of TSUKUBA &#124; tags: electronic, japan, manuscript, [...] </description>
		<content:encoded><![CDATA[<p>[...] original here: SCI投稿常用英语« Information Retrieval Blog          By admin | category: University of TSUKUBA | tags: electronic, japan, manuscript, [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

