tarsqi / ttk

Tarsqi Toolkit
Apache License 2.0
25 stars 10 forks source link

Update treetagger #90

Closed marcverhagen closed 3 years ago

marcverhagen commented 4 years ago

Current version of the TreeTagger uses english.par instead of english-utf8.par. Change components/preprocessor/wrapper.py to deal with this. A simplistic patch is to replace

PARAMETER_FILE = "english-utf8.par"

with

PARAMETER_FILE = "english.par"

but I want something that deals with both cases.