mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 07:57:35 +03:00 
			
		
		
		
	* replace unicode categories with raw list of code points * simplifying ranges * fixing variable length quotes * removing redundant regular expression * small cleanup of regexp notations * quotes and alpha as ranges instead of alterations * removed most regexp dependencies and features * exponential backtracking - unit tests * rewrote expression with pathological backtracking * disabling double hyphen tests for now * test additional variants of repeating punctuation * remove regex and redundant backslashes from load_reddit script * small typo fixes * disable double punctuation test for russian * clean up old comments * format block code * final cleanup * naming consistency * french strings as unicode for python 2 support * french regular expression case insensitive
		
			
				
	
	
		
			24 lines
		
	
	
		
			855 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			855 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # coding: utf8
 | |
| from __future__ import unicode_literals
 | |
| 
 | |
| from ..char_classes import ALPHA, ALPHA_LOWER, ALPHA_UPPER, CONCAT_QUOTES, HYPHENS
 | |
| from ..char_classes import LIST_ELLIPSES, LIST_ICONS
 | |
| 
 | |
| _hyphens_no_dash = HYPHENS.replace("-", "").strip("|").replace("||", "")
 | |
| _infixes = (
 | |
|     LIST_ELLIPSES
 | |
|     + LIST_ICONS
 | |
|     + [
 | |
|         r"(?<=[{al}])\.(?=[{au}])".format(al=ALPHA_LOWER, au=ALPHA_UPPER),
 | |
|         r"(?<=[{a}])[,!?/()]+(?=[{a}])".format(a=ALPHA),
 | |
|         r"(?<=[{a}{q}])[:<>=](?=[{a}])".format(a=ALPHA, q=CONCAT_QUOTES),
 | |
|         r"(?<=[{a}])--(?=[{a}])".format(a=ALPHA),
 | |
|         r"(?<=[{a}]),(?=[{a}])".format(a=ALPHA),
 | |
|         r"(?<=[{a}])([{q}\)\]\(\[])(?=[\-{a}])".format(a=ALPHA, q=CONCAT_QUOTES),
 | |
|         r'(?<=[{a}])(?:{h})(?=[{a}])'.format(a=ALPHA, h=_hyphens_no_dash),
 | |
|         r"(?<=[0-9])-(?=[0-9])",
 | |
|     ]
 | |
| )
 | |
| 
 | |
| TOKENIZER_INFIXES = _infixes
 |