mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 16:07:41 +03:00 
			
		
		
		
	* update all for pipeline.init * add all in training.init * add all in kb.init * alphabetically
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from .alignment import Alignment  # noqa: F401
 | |
| from .augment import dont_augment, orth_variants_augmenter  # noqa: F401
 | |
| from .batchers import minibatch_by_padded_size, minibatch_by_words  # noqa: F401
 | |
| from .callbacks import create_copy_from_base_model  # noqa: F401
 | |
| from .corpus import Corpus, JsonlCorpus, PlainTextCorpus  # noqa: F401
 | |
| from .example import Example, validate_examples, validate_get_examples  # noqa: F401
 | |
| from .gold_io import docs_to_json, read_json_file  # noqa: F401
 | |
| from .iob_utils import (  # noqa: F401
 | |
|     biluo_tags_to_offsets,
 | |
|     biluo_tags_to_spans,
 | |
|     biluo_to_iob,
 | |
|     iob_to_biluo,
 | |
|     offsets_to_biluo_tags,
 | |
|     remove_bilu_prefix,
 | |
|     split_bilu_label,
 | |
|     tags_to_entities,
 | |
| )
 | |
| from .loggers import console_logger  # noqa: F401
 | |
| 
 | |
| __all__ = [
 | |
|     "Alignment",
 | |
|     "Corpus",
 | |
|     "Example",
 | |
|     "JsonlCorpus",
 | |
|     "PlainTextCorpus",
 | |
|     "biluo_tags_to_offsets",
 | |
|     "biluo_tags_to_spans",
 | |
|     "biluo_to_iob",
 | |
|     "create_copy_from_base_model",
 | |
|     "docs_to_json",
 | |
|     "dont_augment",
 | |
|     "iob_to_biluo",
 | |
|     "minibatch_by_padded_size",
 | |
|     "minibatch_by_words",
 | |
|     "offsets_to_biluo_tags",
 | |
|     "orth_variants_augmenter",
 | |
|     "read_json_file",
 | |
|     "remove_bilu_prefix",
 | |
|     "split_bilu_label",
 | |
|     "tags_to_entities",
 | |
|     "validate_get_examples",
 | |
|     "validate_examples",
 | |
| ]
 |