nlp - lexicalized parser vs dependency parser -
this question has answer here:
i new nlp concepts , little bit confused concepts of lexicalized parser , dependency parser. same thing or if not in ways differ. kindly understand. using stanford parser java package. thanks
lexicalized parsing aims @ building tree structure set of tokens. correctly parsed sentence example return 2 sub phrases, syntactical structure of sentence identified.
dependency parsing however, aims @ finding relations between words. example, consider sentence "i have never ever seen before". dependency parser find (directed) auxiliary relation "have" "seen". dependency parsing indicates (grammatical) relations between
this rather informal explanation maybe can make use of it.
Comments
Post a Comment