Skip to content

Releases: google-ai-edge/model-explorer

model-explorer-v0.1.14

28 Oct 17:21
c9da2c5
Compare
Choose a tag to compare

What's Changed

  • Add support for custom edge overlays.

    Edge overlays provide a way to visualize additional connections between op nodes in a graph, separate from the original model structure. This is helpful for illustrating flows of information or processes that differ from the underlying graph's connections. See the guide for more details.

edge_overlays
  • Allow users to disable the fallback behavior when finding mapped node ids in sync navigation. See the updated guide.
  • Show a message when no mapped node is found in sync navigation.

Full Changelog: model-explorer-v0.1.13...model-explorer-v0.1.14

model-explorer-v0.1.13

07 Oct 18:39
6edf92e
Compare
Choose a tag to compare

What's Changed

  • Add support for synchronizing split pane navigation. See the guide here.

Full Changelog: model-explorer-v0.1.12...model-explorer-v0.1.13

adapter-v0.1.6

07 Oct 08:18
Compare
Choose a tag to compare
adapter-v0.1.6 Pre-release
Pre-release
Add support for synchronizing navigation across split panes.

- Allow users to sync navigation by node id, or upload a data json file to specify
  node id mapping. When user selects one node in one side of the pane, the node
  with mapped id will be automatically selected in another pane.
- Allow visualizer component user to pass mapping data through visualizer config.

PiperOrigin-RevId: 682822429

model-explorer-v0.1.12

23 Sep 17:45
706dab5
Compare
Choose a tag to compare

What's Changed

  • Use edit distance to find the best node namespace for TFLite model by @copybara-service in #144
  • Always show full namespace instead of optimized namespace of the selected node in info panel. by @copybara-service in #146
  • Add namespace as a search target for layer nodes. by @copybara-service in #158
  • Allow users to pass node data json string when calling add_node_data. by @jinjingforever in #169
  • Update API to make it more user-friendly by allowing users to pass a single node data item instead of a list by @jinjingforever in #170
  • Don't layout the graph twice when restoring pane state. by @copybara-service in #172
  • Remove obsolete op registrations from c_api_no_xla. by @copybara-service in #174
  • Use model_builder from compiler/mlir. by @copybara-service in #175
  • Retrieve release note and asset download url when checking new version. by @jinjingforever in #178
  • Update package version and minor fix for printing release note only when print_msg is true by @jinjingforever in #185

Full Changelog: model-explorer-v0.1.11...model-explorer-v0.1.12

model-explorer-v0.1.11

03 Sep 21:26
Compare
Choose a tag to compare

What's Changed

  • Add support for multi-line node labels. For op node, use \n in its label field. For layer, use \n in the corresponding op node's namespace field.
    image

  • Add support to re-use an existing server instead of starting a new server.

    The visualize API call now has a set of new parameters to support reusing an existing server. For example, by setting reuse_server parameter to True, the program will try to find a running Model Explorer server and refresh the tab with the new model without starting a new server. See docs here.

    import model_explorer
    model_explorer.visualize('/path/to/model/file', reuse_server=True)

    Similar flags are also added to the command line:

    $ model-explorer /path/to/model/file --reuse_server

Full Changelog: model-explorer-v0.1.10...model-explorer-v0.1.11

model-explorer-v0.1.10

26 Aug 18:25
Compare
Choose a tag to compare

What's Changed

  • Add support for HLO dialects like mhlo and other hlo family of dialects.

  • Add support for adding custom attributes to group/layer nodes.
    Use the new groupNodeAttributes field in graph_builder.Graph. Example:

    graph = gb.Graph(id='graph',
                     nodes=[top_node, node0, node1, node2],
                     groupNodeAttributes={
                         # Use empty name for graph-level attributes.
                         '': {'model attr': 'value'},
                         'layer1': {'layer attr': 'value'}})

    graph node attributes

  • Add a setting to show out-of-layer edges for an op node without needing to select it.
    Note that this will make the visualization more noisy but you might find it useful in some cases.

    show all edges

  • Allow regex filtering node data table rows by node.

    Screenshot 2024-08-26 at 11 18 55 AM

Full Changelog: model-explorer-v0.1.9...model-explorer-v0.1.10

adapter-v0.1.5

13 Aug 20:09
Compare
Choose a tag to compare
adapter-v0.1.5 Pre-release
Pre-release
Use StableHLO adapter implementation as default in MLIR

This should support dialects like `mhlo` and other `hlo` family of dialects.

PiperOrigin-RevId: 662596997

model-explorer-v0.1.9

12 Aug 18:33
Compare
Choose a tag to compare

What's Changed

  • Now the UI code is fully open-sourced. Thanks for your patience!

  • Add support to pin a single op node to the top of a layer:
    Set GraphNode.config.pinToGroupTop to true in your adapter to pin an op node to the top of the corresponding group.
    Screenshot 2024-08-12 at 11 29 06 AM

  • Fix ExportedProgram display when tensor is None by @justinchuby in #118

  • Minor update to the README file by @copybara-service in #122

Full Changelog: adapter-v0.1.4...model-explorer-v0.1.9

adapter-v0.1.4

31 Jul 19:39
Compare
Choose a tag to compare
adapter-v0.1.4 Pre-release
Pre-release
Rollback the autoformatting

PiperOrigin-RevId: 658075315

model-explorer-v0.1.8

22 Jul 21:27
Compare
Choose a tag to compare

What's Changed

  • Delete unused //tensorflow/python/integration_testing/... and all users by @copybara-service in #100
  • updating pyproject.toml to explicitly only allow supported torch vers… by @pkgoogle in #106
  • Allow users to pass a model name when adding node data through API.
    Example: config.add_node_data_from_path(model_data1, model_name='model1.tflite')
    Also set numpy version < 2 to suppress warning message.

Full Changelog: model-explorer-v0.1.7...model-explorer-v0.1.8