mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-01 00:17:44 +03:00 
			
		
		
		
	* Add missing punctuation for Tigrinya and Amharic * Fix numeral and ordinal numbers for Tigrinya - Amharic was used in many cases - Also fixed some typos * Update Tigrinya stop-words * Contributor agreement for fgaim * Fix typo in "ti" lang test * Remove multi-word entries from numbers and ordinals
		
			
				
	
	
		
			20 lines
		
	
	
		
			544 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			544 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from ..char_classes import LIST_PUNCT, LIST_ELLIPSES, LIST_QUOTES, CURRENCY
 | |
| from ..char_classes import UNITS, ALPHA_UPPER
 | |
| 
 | |
| _list_punct = LIST_PUNCT + "፡ ። ፣ ፤ ፥ ፦ ፧ ፠ ፨".strip().split()
 | |
| 
 | |
| _suffixes = (
 | |
|     _list_punct
 | |
|     + LIST_ELLIPSES
 | |
|     + LIST_QUOTES
 | |
|     + [
 | |
|         r"(?<=[0-9])\+",
 | |
|         # Amharic is written from Left-To-Right
 | |
|         r"(?<=[0-9])(?:{c})".format(c=CURRENCY),
 | |
|         r"(?<=[0-9])(?:{u})".format(u=UNITS),
 | |
|         r"(?<=[{au}][{au}])\.".format(au=ALPHA_UPPER),
 | |
|     ]
 | |
| )
 | |
| 
 | |
| TOKENIZER_SUFFIXES = _suffixes
 |