mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-26 21:51:24 +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"]
 |