mirror of https://github.com/explosion/spaCy.git
JapaneseTokenizer.pipe added (#6515)
* JapaneseTokenizer.pipe added For [spacymoji](https://spacy.io/universe/project/spacymoji) with `Japanese()`. * DummyTokenizer.pipe added instead
This commit is contained in:
parent
df4891bed1
commit
0afb54ac93
|
@ -838,6 +838,13 @@ class SimpleFrozenDict(dict):
|
||||||
|
|
||||||
|
|
||||||
class DummyTokenizer(object):
|
class DummyTokenizer(object):
|
||||||
|
def __call__(self, text):
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def pipe(self, texts, **kwargs):
|
||||||
|
for text in texts:
|
||||||
|
yield self(text)
|
||||||
|
|
||||||
# add dummy methods for to_bytes, from_bytes, to_disk and from_disk to
|
# add dummy methods for to_bytes, from_bytes, to_disk and from_disk to
|
||||||
# allow serialization (see #1557)
|
# allow serialization (see #1557)
|
||||||
def to_bytes(self, **kwargs):
|
def to_bytes(self, **kwargs):
|
||||||
|
|
Loading…
Reference in New Issue