medkit.text.preprocessing
Contents
medkit.text.preprocessing#
APIs#
For accessing these APIs, you may use import like this:
from medkit.text.preprocessing import <api_to_import>
Classes:
|
Generic character replacer to be used as pre-processing module |
|
Detect duplicated chunks of text across a collection of text documents, relying on the duptextfinder library. |
|
Attribute indicating if some text is a duplicate of some other text in another document |
|
EDS pre-processing annotation module |
|
Generic normalizer to be used as pre-processing module |
|
Create new instance of NormalizerRule(pattern_to_replace, new_text) |
- class CharReplacer(output_label, rules=None, name=None, uid=None)[source]#
Generic character replacer to be used as pre-processing module
This module is a non-destructive module allowing to replace selected 1-char string with the wanted n-chars strings. It respects the span modification by creating a new text-bound annotation containing the span modification information from input text.
- Parameters
output_label (
str) – The output label of the created annotationsrules (
Optional[List[Tuple[str,str]]]) – The list of replacement rules. Default: ALL_CHAR_RULESname (
Optional[str]) – Name describing the pre-processing module (defaults to the class name)uid (str) – Identifier of the pre-processing module
Methods:
run(segments)Run the module on a list of segments provided as input and returns a new list of segments
- class DuplicateFinder(output_label, segments_to_output='dup', min_duplicate_length=5, fingerprint_type='word', fingerprint_length=2, date_metadata_key=None, case_sensitive=True, allow_multiline=True, orf=1)[source]#
Detect duplicated chunks of text across a collection of text documents, relying on the duptextfinder library.
When a duplicated chunk of text is found, a segment is created on the newest document covering the span that is duplicated. A
DuplicationAttributehaving “is_duplicate” as label and True as value is attached to the segment. It can later be propagated to the entities created from the duplicate segments.The attribute also holds the id of the source document from which the text was copied, the spans of the text in the source document, and optionally the date of the source document if provided.
Optionally, segments can also be created for non-duplicate zones to make it easier to process only those parts of the documents. For these segments, the attribute value is False and the source, spans and date fields are None.
NB: better performance may be achieved by installing the ncls python package, which will then be used by duptextfinder library.
- Parameters
output_label (
str) – Label of created segmentssegments_to_output (
Literal['dup','nondup','both']) – Type of segments to create: only duplicate segments (“dup”), only non-duplicate segments (“nondup”), or both (“both”)min_duplicate_length (
int) – Minimum length of duplicated segments, in characters (shorter segments will be discarded)fingerprint_type (
Literal['char','word']) – Base unit to use for fingerprinting (either “char” or “word”)fingerprint_length (
int) – Number of chars or words in each fingerprint. If fingerprint_type is set to “char”, this should be the same value as min_duplicate_length. If fingerprint_type is set to “word”, this should be around the average word size multiplied by min_duplicate_lengthdate_metadata_key (
Optional[str]) – Key to use to retrieve the date of each document from their metadata dicts. When provided, this is used to determine which document should be the source of a duplicate (the older) and which document should be the recipient (the newer). If None, the order of the documents in the collection will be used.case_sensitive (
bool) – Whether duplication detection should be case-sensitive or notallow_multiline (
bool) – Whether detected duplicates can span across multiline lines, or each line should be handled separatelyorf (
int) – Step size when building fingerprints, cf the duptextfinder documentation
Methods:
run(collections)Find duplicates in each collection of documents
- run(collections)[source]#
Find duplicates in each collection of documents
For each duplicate found, a
Segmentobject with aDuplicationAttributewill be created and attached to the document that is the recipient of the duplication (ie not the source document).
- class DuplicationAttribute(value, source_doc_id=None, source_spans=None, source_doc_date=None, metadata=None, uid=None)[source]#
Attribute indicating if some text is a duplicate of some other text in another document
- Variables
uid (str) – Identifier of the attribute
label (str) – The attribute label, always set to
DuplicationAttribute.LABELvalue (Optional[Any]) – True if the segment or entity to which the attribute belongs is a duplicate of the part of another document, False otherwise.
source_doc_id (str) – Identifier of the document from which the text was copied
source_spans (List[medkit.core.text.span.AnySpan]) – Spans of the duplicated text in the source document
source_doc_date (Optional[Any]) – Date of the source document, if known
Attributes:
Label used for all TNM attributes
- LABEL: ClassVar[str] = 'is_duplicate'#
Label used for all TNM attributes
- class Normalizer(output_label, rules=None, name=None, uid=None)[source]#
Generic normalizer to be used as pre-processing module
This module is a non-destructive module allowing to replace selected characters with the wanted characters. It respects the span modification by creating a new text-bound annotation containing the span modification information from input text.
- Parameters
output_label (
str) – The output label of the created annotationsrules (
Optional[List[Tuple[str,str]]]) – The list of replacement rulesname (
Optional[str]) – Name describing the pre-processing module (defaults to the class name)uid (str) – Identifier of the pre-processing module
Methods:
run(segments)Run the module on a list of segments provided as input and returns a new list of segments
- class NormalizerRule(pattern_to_replace, new_text)[source]#
Create new instance of NormalizerRule(pattern_to_replace, new_text)
Attributes:
Alias for field number 1
Alias for field number 0
- property pattern_to_replace#
Alias for field number 0
- property new_text#
Alias for field number 1
- class EDSCleaner(output_label='CLEAN_TEXT', keep_endlines=False, handle_parentheses_eds=True, handle_points_eds=True, uid=None)[source]#
EDS pre-processing annotation module
This module is a non-destructive module allowing to remove and clean selected points and newlines characters. It respects the span modification by creating a new text-bound annotation containing the span modification information from input text.
Instantiate the endlines handler.
- Parameters
output_label (
str) – The output label of the created annotations. Default: “CLEAN_TEXT” (cf.DefaultConfig)keep_endlines (
bool) – If True, modify multiple endlines using .n as a replacement. If False (default), modify multiple endlines using whitespaces (.s) as a replacement.handle_parentheses_eds (
bool) – If True (default), modify the text near to parentheses or keywords according to predefined rules for french documents If False, the text near to parentheses or keywords is not modifiedhandle_points_eds (
bool) – Modify points near to predefined keywords for french documents If True (default), modify the points near to keywords If False, the points near to keywords is not modifieduid (str) – Identifier of the pre-processing module
Methods:
run(segments)Run the module on a list of segments provided as input and returns a new list of segments.