Skip to main content

A simple visualization tool for NLP information extraction: Named entity recognition, Entity attribute extraction, and Relation extration.

Project description

Python Version PyPI

Visualization tool for NLP information extraction: Named entity recognition, Entity attribute extraction, and Relation extration.

Table of Contents

Overview

The ie-viz is a lightweight tool for in-line information extraction (IE) visualization. It supports customizable colors for named entity marking, tooltip for entity attributes display, and relation path that links related named entities. Current version has built-in light and dark themes while customization is available through the CSS. The ie-viz can be deployed as a Flask App that runs on a host:port. It can also be rendered as HTML and display in Browser or Interactive Python environments (e.g., Jupyter Notebook).

Features Support
Named Entity Marks :white_check_mark: with customizable colors
Entity Attributes :white_check_mark: as tooltip
Entity Relations :white_check_mark: as path linking entities
Theme :white_check_mark: light and dark themes
Deployment :white_check_mark: Flask APP or HTML rendering

Prerequisite

  • python ^3.11
  • flask >=2.3

Installation

Python package is available on PyPi.

pip install ie-viz

Quick-start

We use a short sample News article synthesized by GPT-4o to demo this quick-start.

text = """
On Monday, the tech giant, Innovia Corp, announced the launch of its new flagship smartphone, the Innovia XPro. 
The device, which comes in both 128GB and 256GB storage variants, is powered by the latest Octa-core Quantum processor 
and features a 6.5-inch AMOLED display. According to the CEO, Lisa Martin, this release marks a significant milestone for the company. 
The phone is expected to compete directly with the recent release from its rival, Nexon Technologies, which unveiled the 
Nexon Ultra series earlier this year.
"""

Entities have attribute type as one of "organization", "person", or "product".

  • when type is organization, there is no other attributes
  • when type is person, the entity has an optional Role attribute
  • when type is product, the entity has an optional Specifications attribute
entities = [
            {'entity_id': '0', 'start': 28, 'end': 40, 'attr': {'Type': 'organization'}}, 
            {'entity_id': '1', 'start': 99, 'end': 111, 'attr': {'Type': 'product', 'Specifications': '128GB, 256GB, Octa-core Quantum processor, 6.5-inch AMOLED display'}}, 
            {'entity_id': '2', 'start': 296, 'end': 307, 'attr': {'Type': 'person', 'Role': 'CEO'}}, 
            {'entity_id': '3', 'start': 452, 'end': 470, 'attr': {'Type': 'organization'}}, 
            {'entity_id': '4', 'start': 492, 'end': 510, 'attr': {'Type': 'product'}}
           ]

Relations (optional) are listed as as entity id pairs.

relations = [
             {'entity_1_id': '0', 'entity_2_id': '1'}, 
             {'entity_1_id': '0', 'entity_2_id': '2'}, 
             {'entity_1_id': '3', 'entity_2_id': '4'}
            ]

The serve() function starts a Flask App that visualizes the entities, attributes, and relations. The theme parameter supports light and dark modes. The color_attr_key parameter specifies that entity color is based on entity "Type" attribute.

from ie_viz import serve

serve(text, entities, relations, theme="light", color_attr_key="Type")

A Flask App starts on the localhost port 5000 (default). The full rendered HTML is available TechNews

* Serving Flask app 'ie_viz.utilities'
 * Debug mode: off
WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
 * Running on all addresses (0.0.0.0)
 * Running on http://127.0.0.1:5000
Press CTRL+C to quit
127.0.0.1 - - [02/Oct/2024 11:44:58] "GET / HTTP/1.1" 200 -

Examples

Below are Jupyter notebooks that demo some use cases:

Tech News: Organization, Product, and Person

Clinical Note: Medication, condition, and Adverse Reaction

User guide

Input formats

Both the serve() and render() functions accept the same data types for input.

The entities must be a list of dictionaries. Each dictionary must have entity_id, start, and end keys. The attr key is optional and can be used for entity attributes display or entity coloring.

entities = [
            {'entity_id': '<entity id>', 'start': <start char>, 'end': <end char>}, 
            {'entity_id': '<entity id>', 'start': <start char>, 'end': <end char>, 'attr': {'<attribute key>': '<attribute value>'}},
            ...
           ]

The relations is optional. It must be a list of dictionaries with entity_1_id and entity_2_id keys.

relations = [
             {'entity_1_id': '<entity id>', 'entity_2_id': '<entity id>'}, 
             {'entity_1_id': '<entity id>', 'entity_2_id': '<entity id>'}, 
             ...
            ]
Entity colors

There are two parameters to customize the entity colors, color_attr_key or color_map_func. If none of them are defined, a default color is assigned to all entities.

The color_attr_key is a easier way to define entity color. It specifies an attribute key to be used. All entities with the same attribute value will be assigned the same color.

from ie_viz import serve

serve(text, entities, color_attr_key="<attribute key to assign color>")

Note that all entities must have that attribute key, or an error will be raised.

The color_map_func is a more flexible way to define colors. Users define a custom function that inputs an entity and returns a hex color code (as string).

def color_map_func(entity) -> str:
    if entity['attr']['<attribute key>'] == "<a certain value>":
        return "#7f7f7f"
    else:
        return "#03A9F4"

serve(text, entities, color_map_func=color_map_func)

Note that the color_map_func has higher priority than color_attr_key.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ie_viz-0.1.5.tar.gz (11.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ie_viz-0.1.5-py3-none-any.whl (10.4 kB view details)

Uploaded Python 3

File details

Details for the file ie_viz-0.1.5.tar.gz.

File metadata

  • Download URL: ie_viz-0.1.5.tar.gz
  • Upload date:
  • Size: 11.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.11.8 Linux/6.8.0-49-generic

File hashes

Hashes for ie_viz-0.1.5.tar.gz
Algorithm Hash digest
SHA256 07412284069129cf9adfb91f368a6e0752a9f9b14712ece2d5fbd65f0f53bffe
MD5 8e2d3e7502a0fa81e0e3b3d743348880
BLAKE2b-256 a7a2c4d57e277d0abc6a60e9fba8fb703ce56a1a69c0b0c59ceba0c6e8aa9a2a

See more details on using hashes here.

File details

Details for the file ie_viz-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: ie_viz-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 10.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.11.8 Linux/6.8.0-49-generic

File hashes

Hashes for ie_viz-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 380908e395a45cd73b149c0bff901611fca34451b1626370dd7f18b4e8e9076c
MD5 c06848b22c22443c3ae8602cb34a30cb
BLAKE2b-256 5a9fd50c87065b39a4e86a39a6b51f4f229abe4bb94a7760469fa78b2b700cb0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page