mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +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"]
 |