Change default tag for 動詞,非自立可能

Example of this is いる in these sentences:

    彼はそこにいる。# should be VERB
    彼は底に立っている。# should be AUX

Unclear which case is more numerous - need to check a large corpus - but
in keeping with the other ambiguous tags, this is mapped to the
"dominant" or first part of the tag. -POLM
This commit is contained in:
Paul O'Leary McCann 2017-08-21 00:21:45 +09:00
parent 6e9e686568
commit 234a8a7591

View File

@ -46,7 +46,7 @@ TAG_MAP = {
"代名詞,*,*,*":{POS: PRON},
"動詞,一般,*,*":{POS: VERB},
"動詞,非自立可能,*,*":{POS: AUX}, # XXX VERB if alone, AUX otherwise
"動詞,非自立可能,*,*":{POS: VERB}, # XXX VERB if alone, AUX otherwise
"動詞,非自立可能,*,*,AUX":{POS: AUX},
"動詞,非自立可能,*,*,VERB":{POS: VERB},
"副詞,*,*,*":{POS: ADV},