bayan-api / test_pos.py
youssefreda9's picture
HF Deploy: Fix syntax error with smart quotes in popup.js
fe1e225
Raw
History Blame Contribute Delete
315 Bytes
import sys
sys.stdout.reconfigure(encoding='utf-8')
from camel_tools.tokenizers.word import simple_word_tokenize
from camel_tools.disambig.mle import MLEDisambiguator
mle = MLEDisambiguator.pretrained()
t = simple_word_tokenize('فتاتان جميل')
print([a.analyses[0].analysis for a in mle.disambiguate(t)])