Skip to content

Releases: daviden1013/ie-viz

IE-VIZ v0.2.1

28 Jan 06:36
Compare
Choose a tag to compare

What's changed

  • Fixed a bug in the filtering logic to handle entities with no attributes. Now, entities with no attributes will be included when "OR" logic is used; excluded when "AND" logic is used.
  • Added horizontal scrollbar to entity and relation tables when they are too wide.

IE-VIZ v0.2.0

25 Jan 07:16
Compare
Choose a tag to compare

What's changed

  • Added filter feature. Now entities can be filtered by all available attributes.
    filter
  • Added entity and relation table view.
    side_table

IE-VIZ v0.1.6

18 Jan 21:34
Compare
Choose a tag to compare

What's changed

  • Fixed entity tooltip position issues. Previously, tooltips might sometimes be shifted to the right. Now they always align with entities.
  • Added default color names for color_map_func. So the color_map_func can either return a color name (e.g., blue, yellow) or a hex color code.
    def color_map_func(entity) -> str:
        if entity['attr']['<attribute key>'] == "<a certain value>":
            return "yellow"
        else:
            return "#03A9F4"

IE-VIZ v0.1.5

29 Dec 06:35
Compare
Choose a tag to compare

What's changed

Fixed entity tooltip size issues. Previously, when the tooltip is too long or wide, it flows beyond the screen. Now we restrict it to < 1/3 of the screen size and apply word wrap.

IE-VIZ v0.1.4

26 Oct 18:47
Compare
Choose a tag to compare

What's changed

Added dependence Flask-SocketIO >= 5.3.3

IE-VIZ v0.1.3

02 Oct 22:00
Compare
Choose a tag to compare

The first release on GitHub.

Documentation

Implemented visualization features for named entity marking, entity attributes display, and entity relation path. See README for more details.

Installation

Python package is available on PyPi