diff --git a/spacy/ja/__init__.py b/spacy/ja/__init__.py index 07e40ada6..da2ec8af2 100644 --- a/spacy/ja/__init__.py +++ b/spacy/ja/__init__.py @@ -21,3 +21,5 @@ class Japanese(Language): "https://github.com/mocobeta/janome") words = [x.surface for x in Tokenizer().tokenize(text)] return Doc(self.vocab, words=words, spaces=[False]*len(words)) + +EXPORT = Japanese \ No newline at end of file