mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 16:07:41 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			729 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			729 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # coding: utf8
 | |
| from __future__ import unicode_literals
 | |
| 
 | |
| from .pipes import Tagger, DependencyParser, EntityRecognizer, EntityLinker
 | |
| from .pipes import TextCategorizer, Tensorizer, Pipe, Sentencizer
 | |
| from .morphologizer import Morphologizer
 | |
| from .entityruler import EntityRuler
 | |
| from .hooks import SentenceSegmenter, SimilarityHook
 | |
| from .functions import merge_entities, merge_noun_chunks, merge_subtokens
 | |
| 
 | |
| __all__ = [
 | |
|     "Tagger",
 | |
|     "DependencyParser",
 | |
|     "EntityRecognizer",
 | |
|     "EntityLinker",
 | |
|     "TextCategorizer",
 | |
|     "Tensorizer",
 | |
|     "Pipe",
 | |
|     "Morphologizer",
 | |
|     "EntityRuler",
 | |
|     "Sentencizer",
 | |
|     "SentenceSegmenter",
 | |
|     "SimilarityHook",
 | |
|     "merge_entities",
 | |
|     "merge_noun_chunks",
 | |
|     "merge_subtokens",
 | |
| ]
 |