<?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>评论：Moses相关介绍</title>
	<atom:link href="http://www.52nlp.cn/moses-introduction/feed" rel="self" type="application/rss+xml" />
	<link>http://www.52nlp.cn/moses-introduction</link>
	<description>I Love Natural Language Processing</description>
	<lastBuildDate>Fri, 30 Jul 2010 00:28:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>来自：52nlp</title>
		<link>http://www.52nlp.cn/moses-introduction/comment-page-1#comment-1245</link>
		<dc:creator>52nlp</dc:creator>
		<pubDate>Sun, 23 May 2010 04:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.52nlp.cn/?p=33#comment-1245</guid>
		<description>不客气。</description>
		<content:encoded><![CDATA[<p>不客气。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：Yu Yifeng</title>
		<link>http://www.52nlp.cn/moses-introduction/comment-page-1#comment-1243</link>
		<dc:creator>Yu Yifeng</dc:creator>
		<pubDate>Sun, 23 May 2010 01:09:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.52nlp.cn/?p=33#comment-1243</guid>
		<description>明白了，谢谢！</description>
		<content:encoded><![CDATA[<p>明白了，谢谢！</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：52nlp</title>
		<link>http://www.52nlp.cn/moses-introduction/comment-page-1#comment-1235</link>
		<dc:creator>52nlp</dc:creator>
		<pubDate>Sat, 22 May 2010 04:25:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.52nlp.cn/?p=33#comment-1235</guid>
		<description>Moses中是支持factored模型的，而对于factored中不同因子的区分，是通过标号识别的，譬如词干是0，词缀是1之类的，在解码中不同的因子可能需要不同的语言模型，所以对于factored Model，Moses解码时可能需要多个语言模型，而这时主要通过的是moses.ini配置脚本进行识别的，而这个脚本就是利用train-model.perl训练时同步生成的，这样就减少了很多手工配置。</description>
		<content:encoded><![CDATA[<p>Moses中是支持factored模型的，而对于factored中不同因子的区分，是通过标号识别的，譬如词干是0，词缀是1之类的，在解码中不同的因子可能需要不同的语言模型，所以对于factored Model，Moses解码时可能需要多个语言模型，而这时主要通过的是moses.ini配置脚本进行识别的，而这个脚本就是利用train-model.perl训练时同步生成的，这样就减少了很多手工配置。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：Yu Yifeng</title>
		<link>http://www.52nlp.cn/moses-introduction/comment-page-1#comment-1233</link>
		<dc:creator>Yu Yifeng</dc:creator>
		<pubDate>Fri, 21 May 2010 02:29:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.52nlp.cn/?p=33#comment-1233</guid>
		<description>moses站点上，关于factored model训练的教程中举的第一个例子：
 % train-model.perl \
    --corpus factored-corpus/proj-syndicate \
    --root-dir unfactored \
    --f de --e en \
    --lm 0:3:factored-corpus/surface.lm:0

我想请教，在SMT中不是decode时才用上语言模型吗，训练时标出lm有什么用？</description>
		<content:encoded><![CDATA[<p>moses站点上，关于factored model训练的教程中举的第一个例子：<br />
 % train-model.perl \<br />
    &#8211;corpus factored-corpus/proj-syndicate \<br />
    &#8211;root-dir unfactored \<br />
    &#8211;f de &#8211;e en \<br />
    &#8211;lm 0:3:factored-corpus/surface.lm:0</p>
<p>我想请教，在SMT中不是decode时才用上语言模型吗，训练时标出lm有什么用？</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：liley</title>
		<link>http://www.52nlp.cn/moses-introduction/comment-page-1#comment-1161</link>
		<dc:creator>liley</dc:creator>
		<pubDate>Wed, 12 May 2010 11:23:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.52nlp.cn/?p=33#comment-1161</guid>
		<description>请问一下,现在moses的版本跟以前肯定不同了,我安装的是候发现 regenerate-makefiles.sh文件比原来多了 
echo &quot;Calling $ACLOCAL...&quot;
$ACLOCAL -I m4 &#124;&#124; die &quot;aclocal failed&quot;
安照原来的方法去运行会提试这行出错
我将其注释掉,可以运行,但是 ./configure --with-srilm=绝对路径又出现错误,提试我./configure找不到,
我srilm编译并测试成功,以lz的经验我应该是哪里出问题了?</description>
		<content:encoded><![CDATA[<p>请问一下,现在moses的版本跟以前肯定不同了,我安装的是候发现 regenerate-makefiles.sh文件比原来多了<br />
echo &#8220;Calling $ACLOCAL&#8230;&#8221;<br />
$ACLOCAL -I m4 || die &#8220;aclocal failed&#8221;<br />
安照原来的方法去运行会提试这行出错<br />
我将其注释掉,可以运行,但是 ./configure &#8211;with-srilm=绝对路径又出现错误,提试我./configure找不到,<br />
我srilm编译并测试成功,以lz的经验我应该是哪里出问题了?</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：Moses报告 &#124; 缥缈的云</title>
		<link>http://www.52nlp.cn/moses-introduction/comment-page-1#comment-791</link>
		<dc:creator>Moses报告 &#124; 缥缈的云</dc:creator>
		<pubDate>Wed, 03 Mar 2010 14:29:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.52nlp.cn/?p=33#comment-791</guid>
		<description>[...] (2)． http://www.52nlp.cn/moses-introduction [...]</description>
		<content:encoded><![CDATA[<p>[...] (2)． <a href="http://www.52nlp.cn/moses-introduction" rel="nofollow">http://www.52nlp.cn/moses-introduction</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：52nlp</title>
		<link>http://www.52nlp.cn/moses-introduction/comment-page-1#comment-726</link>
		<dc:creator>52nlp</dc:creator>
		<pubDate>Fri, 15 Jan 2010 12:01:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.52nlp.cn/?p=33#comment-726</guid>
		<description>没用过vs2008编译moses,所以没遇到过这个问题。上网搜了一下，也没理出个头绪，大概还是缺少这个头文件，可以试着把这个头文件放到vs2008的include中去，或者再搜搜如何将BaseTsd.h加到工程中去，不好意思。</description>
		<content:encoded><![CDATA[<p>没用过vs2008编译moses,所以没遇到过这个问题。上网搜了一下，也没理出个头绪，大概还是缺少这个头文件，可以试着把这个头文件放到vs2008的include中去，或者再搜搜如何将BaseTsd.h加到工程中去，不好意思。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：kingstarlcq</title>
		<link>http://www.52nlp.cn/moses-introduction/comment-page-1#comment-723</link>
		<dc:creator>kingstarlcq</dc:creator>
		<pubDate>Fri, 15 Jan 2010 05:17:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.52nlp.cn/?p=33#comment-723</guid>
		<description>BaseTsd.h</description>
		<content:encoded><![CDATA[<p>BaseTsd.h</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：kingstarlcq</title>
		<link>http://www.52nlp.cn/moses-introduction/comment-page-1#comment-722</link>
		<dc:creator>kingstarlcq</dc:creator>
		<pubDate>Fri, 15 Jan 2010 05:15:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.52nlp.cn/?p=33#comment-722</guid>
		<description>我下载的是moses-2009-04-13.zip，用vs2008编译，提示没有这个头文件，上网找了一个加到工程里面去了，但是重新生成的时候还是提示没有，这是怎么回事啊</description>
		<content:encoded><![CDATA[<p>我下载的是moses-2009-04-13.zip，用vs2008编译，提示没有这个头文件，上网找了一个加到工程里面去了，但是重新生成的时候还是提示没有，这是怎么回事啊</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：admin</title>
		<link>http://www.52nlp.cn/moses-introduction/comment-page-1#comment-456</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 22 Sep 2009 14:43:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.52nlp.cn/?p=33#comment-456</guid>
		<description>还不确定，估计可能性小些，不过可以加我的msn。</description>
		<content:encoded><![CDATA[<p>还不确定，估计可能性小些，不过可以加我的msn。</p>
]]></content:encoded>
	</item>
</channel>
</rss>
