mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			252 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			252 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# coding: utf8
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
 | 
						|
ADVERBS_IRREG = {
 | 
						|
    "best": ("well",),
 | 
						|
    "better": ("well",),
 | 
						|
    "deeper": ("deeply",),
 | 
						|
    "farther": ("far",),
 | 
						|
    "further": ("far",),
 | 
						|
    "harder": ("hard",),
 | 
						|
    "hardest": ("hard",)
 | 
						|
}
 |