mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			504 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			504 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from .stop_words import STOP_WORDS
 | 
						|
from .lex_attrs import LEX_ATTRS
 | 
						|
from .tag_map import TAG_MAP
 | 
						|
 | 
						|
from ...attrs import LANG
 | 
						|
from ...language import Language
 | 
						|
 | 
						|
 | 
						|
class ArmenianDefaults(Language.Defaults):
 | 
						|
    lex_attr_getters = dict(Language.Defaults.lex_attr_getters)
 | 
						|
    lex_attr_getters[LANG] = lambda text: "hy"
 | 
						|
 | 
						|
    lex_attr_getters.update(LEX_ATTRS)
 | 
						|
    stop_words = STOP_WORDS
 | 
						|
    tag_map = TAG_MAP
 | 
						|
 | 
						|
 | 
						|
class Armenian(Language):
 | 
						|
    lang = "hy"
 | 
						|
    Defaults = ArmenianDefaults
 | 
						|
 | 
						|
 | 
						|
__all__ = ["Armenian"]
 |