mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			241 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			241 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# coding: utf8
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
 | 
						|
STOP_WORDS = set(
 | 
						|
    """
 | 
						|
അത്
 | 
						|
ഇത്
 | 
						|
ആയിരുന്നു
 | 
						|
ആകുന്നു
 | 
						|
വരെ
 | 
						|
അന്നേരം
 | 
						|
അന്ന്
 | 
						|
ഇന്ന്
 | 
						|
ആണ്
 | 
						|
""".split()
 | 
						|
)
 |