Entity
The Entity pipeline applies a token classifier to text and extracts entity/label combinations.
Example
The following shows a simple example using this pipeline.
from txtai.pipeline import Entity
# Create and run pipeline
entity = Entity()
entity("Canada's last fully intact ice shelf has suddenly collapsed, " \
"forming a Manhattan-sized iceberg")
See the link below for a more detailed example.
Notebook | Description | |
---|---|---|
Entity extraction workflows | Identify entity/label combinations |
Configuration-driven example
Pipelines are run with Python or configuration. Pipelines can be instantiated in configuration using the lower case name of the pipeline. Configuration-driven pipelines are run with workflows or the API.
config.yml
# Create pipeline using lower case class name
entity:
# Run pipeline with workflow
workflow:
entity:
tasks:
- action: entity
Run with Workflows
from txtai.app import Application
# Create and run pipeline with workflow
app = Application("config.yml")
list(app.workflow("entity", ["Canada's last fully intact ice shelf has suddenly collapsed, forming a Manhattan-sized iceberg"]))
Run with API
CONFIG=config.yml uvicorn "txtai.api:app" &
curl \
-X POST "http://localhost:8000/workflow" \
-H "Content-Type: application/json" \
-d '{"name":"entity", "elements": ["Canadas last fully intact ice shelf has suddenly collapsed, forming a Manhattan-sized iceberg"]}'
Methods
Python documentation for the pipeline.
Source code in txtai/pipeline/text/entity.py
|
|
Applies a token classifier to text and extracts entity/label combinations.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text | text|list | required | |
labels | list of entity type labels to accept, defaults to None which accepts all | None | |
aggregate | method to combine multi token entities - options are “simple” (default), “first”, “average” or “max” | ‘simple’ | |
flatten | flatten output to a list of labels if present. Accepts a boolean or float value to only keep scores greater than that number. | None | |
join | joins flattened output into a string if True, ignored if flatten not set | False | |
workers | number of concurrent workers to use for processing data, defaults to None | 0 |
Returns:
Type | Description |
---|---|
list of (entity, entity type, score) or list of entities depending on flatten parameter |
Source code in txtai/pipeline/text/entity.py
|
|