mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-01 00:17:44 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			407 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			407 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
 | |
| from .stop_words import STOP_WORDS
 | |
| from .lex_attrs import LEX_ATTRS
 | |
| from ...language import Language
 | |
| 
 | |
| 
 | |
| class TagalogDefaults(Language.Defaults):
 | |
|     tokenizer_exceptions = TOKENIZER_EXCEPTIONS
 | |
|     lex_attr_getters = LEX_ATTRS
 | |
|     stop_words = STOP_WORDS
 | |
| 
 | |
| 
 | |
| class Tagalog(Language):
 | |
|     lang = "tl"
 | |
|     Defaults = TagalogDefaults
 | |
| 
 | |
| 
 | |
| __all__ = ["Tagalog"]
 |