mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-29 15:07:54 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			246 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			246 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Source: https://github.com/stopwords-iso/stopwords-et
 | |
| 
 | |
| STOP_WORDS = set(
 | |
|     """
 | |
| aga
 | |
| ei
 | |
| et
 | |
| ja
 | |
| jah
 | |
| kas
 | |
| kui
 | |
| kõik
 | |
| ma
 | |
| me
 | |
| mida
 | |
| midagi
 | |
| mind
 | |
| minu
 | |
| mis
 | |
| mu
 | |
| mul
 | |
| mulle
 | |
| nad
 | |
| nii
 | |
| oled
 | |
| olen
 | |
| oli
 | |
| oma
 | |
| on
 | |
| pole
 | |
| sa
 | |
| seda
 | |
| see
 | |
| selle
 | |
| siin
 | |
| siis
 | |
| ta
 | |
| te
 | |
| ära
 | |
| """.split()
 | |
| )
 |