Stanford Parser online

回复: Stanford Parser online

最好从头阅读一下这个帖子,重点看19和21楼。
 
回复: Stanford Parser online

为什么总打不开呢?提示:
Failed to load Main-class manifest from C:\tregex-2005-11-23\tregex.jar
我明明就是在这个文件夹下点击的tregex.jar.
 
回复: Stanford Parser online

为什么总打不开呢?提示:
Failed to load Main-class manifest from C:\tregex-2005-11-23\tregex.jar
我明明就是在这个文件夹下点击的tregex.jar.

I haven't tried it yet, and you may want to contact the developer directly to request the instruction.
 
回复: Stanford Parser online

请问啊,为什么我的只能看到树形的分析,看不到typed dependencies的列表啊?
 
回复: Stanford Parser online

prep(拥有-11, 随着-1)
nmod(改革-4, 住房-2)
nmod(改革-4, 制度-3)
pobj(随着-1, 改革-4)
advmod(多-7, 越来越-6)
rcmod(居民-10, 多-7)
cpm(多-7, 的-8)
nmod(居民-10, 城镇-9)
nsubj(拥有-11, 居民-10)
assmod(房屋-14, 自己-12)
assm(自己-12, 的-13)
dobj(拥有-11, 房屋-14)
cc(拥有-11, 而且-16)
advmod(集中-18, 大量-17)
ccomp(拥有-11, 集中-18)
prep(集中-18, 在-19)
nmod(小区-21, 住宅-20)
lobj(内-22, 小区-21)
plmod(在-19, 内-22)
这些是怎么出来的?我下载的parser,并不能解析出这些啊?
 
回复: Stanford Parser online

应该要java,然后需要在命令行模式下操作。command mode,就是在dos命令行下。
 
回复: Stanford Parser online

谢谢,各位热心的人,我已经解决一部分问题了

能解析的都解析出来了,可我还有一个问题啊,laohong 有讲过将英文分词的合并到系统里去,可

怎么把中文分词的也合并到里面呢,如果能把中科院的那个词性标注、分词系统也合并到里面去,或

者不应该说是合并,而是一起运行就好了
 
回复: Stanford Parser online

为什么我的parser 这个button 是灰色的不能点啊!!!!!!!!!!!!!!!???

解决!
 
Last edited:
回复: Stanford Parser online

englishPCFG.ser和那个englishfactored.ser有什么区别!??第一个有什么用?请回答下啊
 
回复: Stanford Parser online

parser问题解决了。就是那个图没有办法输出,txt格式。。。呵呵。没法比。

再有一个问题是这个tagger没有bat文件啊。我执行那个啊??
 
回复: Stanford Parser online

laohong如果我一次做多个文件的处理,bat文件如何编辑,你给出一个文件的输出,但如果要多个文件那?
 
回复: Stanford Parser online

这个软件处理的文本最好是什么形式的。比如:

It was among these that Hinkle identified a photograph of Barco! For it seems that Barco, fancying himself a ladies' man (and why not after seven marriages?), had listed himself for Mormon Beard roles

还是:
It was among these that Hinkle identified a photograph of Barco!
For it seems that Barco, fancying himself a ladies' man (and why not after seven

就是每句是连贯的就可以,还是必须每个句子换一行~!
 
回复: Stanford Parser online

For English Text:

Under DOS, go to the directory where the parser is located, then type the line below:

lexparser.bat input.txt >output.txt

Then, enter to get your result.

For processing Chinese texts

Firstly, you need segement the input text (search ICTCLAS in this forum if you don't have). That is, convert 今天真热。to 今天 真 热 。

Then save the segmented text in GB format (not UTF-8, which is used for the GUI/windows version).

Next, creat a bat file by copying and pasting the following lines (between the equal signs in blue) to your notepad, and save it with a name of lexparserCh.bat to the same folder where your parser program is:

=============================
@echo off
:: Runs the Chinese PCFG parser on one or more files, printing trees only
:: usage: lexparser fileToparse
java -server -mx800m -cp "stanford-parser.jar;" edu.stanford.nlp.parser.lexparser.LexicalizedParser -outputFormat "penn,typedDependenciesCollapsed" chineseFactored.ser.gz %1
=============================

Finally, go to the directory where the parser is located, and type the line below:

lexparserCh.bat inputCh.txt >outputCh.txt

Then, enter to get your result.
请问,对英文文本,这样的批处理文件要怎么样改?我的理解是这样output文件里就是Parsed的text文件,而不是树形结构了,对吗?因为最终想保存Parsed的文件。
 
Re: 回复: Stanford Parser online

请问,对英文文本,这样的批处理文件要怎么样改?我的理解是这样output文件里就是Parsed的text文件,而不是树形结构了,对吗?因为最终想保存Parsed的文件。

阅读 + 试验
 
回复: Stanford Parser online

load parser时,选择Englishfactored.ser.gz或者Chinesefactored.ser.gz,那才是paser。我试过了。没问题。不过,怎样将分析结果输入到文本文件里面?
 
Back
顶部