mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-30 15:37:29 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			873 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			873 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from ..punctuation import TOKENIZER_PREFIXES as BASE_TOKENIZER_PREFIXES
 | ||
| from ..char_classes import LIST_ELLIPSES, LIST_ICONS
 | ||
| from ..char_classes import ALPHA, HYPHENS, CONCAT_QUOTES
 | ||
| from ..char_classes import ALPHA_LOWER, ALPHA_UPPER
 | ||
| 
 | ||
| 
 | ||
| ELISION = "'’"
 | ||
| 
 | ||
| 
 | ||
| _prefixes = [r"'[0-9][0-9]", r"[0-9]+°"] + BASE_TOKENIZER_PREFIXES
 | ||
| 
 | ||
| 
 | ||
| _infixes = (
 | ||
|     LIST_ELLIPSES
 | ||
|     + LIST_ICONS
 | ||
|     + [
 | ||
|         r"(?<=[0-9])[+\-\*^](?=[0-9-])",
 | ||
|         r"(?<=[{al}{q}])\.(?=[{au}{q}])".format(
 | ||
|             al=ALPHA_LOWER, au=ALPHA_UPPER, q=CONCAT_QUOTES
 | ||
|         ),
 | ||
|         r"(?<=[{a}]),(?=[{a}])".format(a=ALPHA),
 | ||
|         r"(?<=[{a}])(?:{h})(?=[{al}])".format(a=ALPHA, h=HYPHENS, al=ALPHA_LOWER),
 | ||
|         r"(?<=[{a}0-9])[:<>=\/](?=[{a}])".format(a=ALPHA),
 | ||
|         r"(?<=[{a}][{el}])(?=[{a}0-9\"])".format(a=ALPHA, el=ELISION),
 | ||
|     ]
 | ||
| )
 | ||
| 
 | ||
| TOKENIZER_PREFIXES = _prefixes
 | ||
| TOKENIZER_INFIXES = _infixes
 |