提取预料库中名词短语 noun phrase extraction

如果是简单的名词,通过标注词性很容易获得;
但是名词短语通过什么方式获得,
请教各位,有思路没有?
 
回复: 提取预料库中名词短语 noun phrase extraction

Syntactic parsing, and use tregex to search for various noun phrases.
 
回复: 提取预料库中名词短语 noun phrase extraction

Syntactic parsing, and use tregex to search for various noun phrases.
actually I was a probie in the field...
therefore, a proposal is humbly made here for more explanation.
there is not so much info about tregex on the internet and it is difficult for me to undertake the searching as per the mentioned clue.
Only if you could say more about the method. THX
 
回复: 提取预料库中名词短语 noun phrase extraction

Stanford Parser: http://nlp.stanford.edu/software/lex-parser.shtml
Stanford Parser Demo: http://nlp.stanford.edu:8080/parser/
Tregex: http://nlp.stanford.edu/software/tregex.shtml
Tregex Doc: http://nlp.stanford.edu/nlp/javadoc/javanlp/edu/stanford/nlp/trees/tregex/TregexPattern.html

You'll need to some knowledge (or help) about running Linux commands to use these tools, and you'll need to figure out the Tregex patterns for your NPs.
 
回复: 提取预料库中名词短语 noun phrase extraction

Stanford Parser: http://nlp.stanford.edu/software/lex-parser.shtml
Stanford Parser Demo: http://nlp.stanford.edu:8080/parser/
Tregex: http://nlp.stanford.edu/software/tregex.shtml
Tregex Doc: http://nlp.stanford.edu/nlp/javadoc/javanlp/edu/stanford/nlp/trees/tregex/TregexPattern.html

You'll need to some knowledge (or help) about running Linux commands to use these tools, and you'll need to figure out the Tregex patterns for your NPs.

Tregex patterns? what does it mean?
Take such a sentence for an example as A clumsy elephant walks down the wide street.
noun phrase includes a clumsy elephant and the wide street.
so tregex pattern here means the article + adj. + noun.
notwithstanding the above, other patterns need to be written if that is what you mean.

Regardless of the above, is it possible for you to make an illustration of the extraction process?
besides, do you think it is likely to write an extraction codes by using JAVA language?

Thanks for your patient reply in advance.
 
Back
顶部