Files
INTUIA/Programa final/spacy/lang/xx/__init__.py
T

13 lines
266 B
Python
Raw Normal View History

2026-03-15 13:27:50 +00:00
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"]