mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
d8805a1073
Use an instance variable instead a class variable for the morphological analzyer so that multiprocessing with spawn is possible.
31 lines
992 B
Python
31 lines
992 B
Python
from typing import Optional
|
|
|
|
from thinc.api import Model
|
|
|
|
from ..ru.lemmatizer import RussianLemmatizer
|
|
from ...vocab import Vocab
|
|
|
|
|
|
class UkrainianLemmatizer(RussianLemmatizer):
|
|
def __init__(
|
|
self,
|
|
vocab: Vocab,
|
|
model: Optional[Model],
|
|
name: str = "lemmatizer",
|
|
*,
|
|
mode: str = "pymorphy2",
|
|
overwrite: bool = False,
|
|
) -> None:
|
|
if mode == "pymorphy2":
|
|
try:
|
|
from pymorphy2 import MorphAnalyzer
|
|
except ImportError:
|
|
raise ImportError(
|
|
"The Ukrainian lemmatizer mode 'pymorphy2' requires the "
|
|
"pymorphy2 library and dictionaries. Install them with: "
|
|
"pip install pymorphy2 pymorphy2-dicts-uk"
|
|
) from None
|
|
if getattr(self, "_morph", None) is None:
|
|
self._morph = MorphAnalyzer(lang="uk")
|
|
super().__init__(vocab, model, name, mode=mode, overwrite=overwrite)
|