mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 07:57:35 +03:00 
			
		
		
		
	* update all for pipeline.init * add all in training.init * add all in kb.init * alphabetically
		
			
				
	
	
		
			12 lines
		
	
	
		
			271 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			271 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from .candidate import Candidate, get_candidates, get_candidates_batch
 | |
| from .kb import KnowledgeBase
 | |
| from .kb_in_memory import InMemoryLookupKB
 | |
| 
 | |
| __all__ = [
 | |
|     "Candidate",
 | |
|     "KnowledgeBase",
 | |
|     "InMemoryLookupKB",
 | |
|     "get_candidates",
 | |
|     "get_candidates_batch",
 | |
| ]
 |