mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-01 12:56:29 +03:00
30 lines
940 B
Python
30 lines
940 B
Python
|
# coding: utf8
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
||
|
from .language_data import *
|
||
|
from ..language import Language, BaseDefaults
|
||
|
from ..attrs import LANG
|
||
|
from ..tokenizer import Tokenizer
|
||
|
from ..tokens import Doc
|
||
|
class ThaiDefaults(BaseDefaults):
|
||
|
lex_attr_getters = dict(Language.Defaults.lex_attr_getters)
|
||
|
lex_attr_getters[LANG] = lambda text: 'th'
|
||
|
tokenizer_exceptions = TOKENIZER_EXCEPTIONS
|
||
|
tag_map = TAG_MAP
|
||
|
stop_words = set(STOP_WORDS)
|
||
|
|
||
|
|
||
|
class Thai(Language):
|
||
|
lang = 'th'
|
||
|
Defaults = ThaiDefaults
|
||
|
def make_doc(self, text):
|
||
|
try:
|
||
|
from pythainlp.tokenize import word_tokenize
|
||
|
except ImportError:
|
||
|
raise ImportError("The Thai tokenizer requires the PyThaiNLP library: "
|
||
|
"https://github.com/wannaphongcom/pythainlp/")
|
||
|
words = [x for x in list(word_tokenize(text,"newmm"))]
|
||
|
return Doc(self.vocab, words=words, spaces=[False]*len(words))
|
||
|
|
||
|
__all__ = ['Thai']
|