You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 13, 2022. It is now read-only.
I use zpar as a dependency parsing, but I found that python-zpar can't load chinese model successfully. And the error is like “Loading tagger from ../chinese-models/tagger
Loading model...terminate called after throwing an instance of 'std::string'
Aborted”
My code is as:
from six import print_
from zpar import ZPar
chinese_model = "../chinese-models"
with ZPar(chinese_model) as z:
depparser = z.get_depparser()
I download the chinese-models.zip from github archive
I also try the english-models, and python-zpar load english model successfully