Skip to content

model-explorer-v0.1.10

Compare
Choose a tag to compare
@jinjingforever jinjingforever released this 26 Aug 18:25
· 165 commits to main since this release

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