mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
13 lines
266 B
Python
13 lines
266 B
Python
from ...language import Language
|
|
|
|
|
|
class MultiLanguage(Language):
|
|
"""Language class to be used for models that support multiple languages.
|
|
This module allows models to specify their language ID as 'xx'.
|
|
"""
|
|
|
|
lang = "xx"
|
|
|
|
|
|
__all__ = ["MultiLanguage"]
|