Tiling Splitter
The tiling text splitter can be used to split text documents at scale based on the NLTK tiling algorithm which tokenizes a document into topical sections. The algorithm detects subtopic shifts based on the analysis of lexical co-occurrence patterns.
The process starts by tokenizing the text into pseudo-sentences of a fixed size w
. Then, depending on the method used, similarity scores are assigned at sentence gaps. The algorithm proceeds by detecting the peak differences between these scores and marking them as boundaries. The boundaries are normalized to the closest
paragraph break and the segmented text is returned.
đ Splitting Text
To use this middleware, you import it in your CDK stack, and connect it to a data source providing text documents, such as the S3 Trigger.
Options
You can customize the way that the text splitter will split text documents by specifying an optional pseudo sentence size.
âšī¸ The pseudo sentence size is to
50
by default.
The default values for this middleware options are documented below.
Option | Default | Description |
---|---|---|
pseudoSentenceSize | 50 | The size of the pseudo sentences. |
đ Output
This middleware takes as an input text documents of a given size, and outputs multiple text documents that are the result of the text splitting process. This allows to process each chunk of text in parallel in downstream middlewares.
In addition to producing new text documents, this middleware also associates metadata with each chunk, such as the chunk identifier and order relative to the original document. Below is an example of CloudEvent
produced by this middleware.
đ Click to expand example
đī¸ Architecture
This middleware runs within a Lambda compute based on the ARM64 architecture, and packages the NLTK
library to run the text splitting process.
đˇī¸ Properties
Supported Inputs
Mime Type | Description |
---|---|
text/plain | UTF-8 text documents. |
Supported Outputs
Mime Type | Description |
---|---|
text/plain | UTF-8 text documents. |
Supported Compute Types
Type | Description |
---|---|
CPU | This middleware only supports CPU compute. |
đ Examples
- Text Splitting Pipeline - Builds a pipeline for splitting text documents using different text splitting algorithms.