model-explorer-v0.1.10
·
165 commits
to main
since this release
What's Changed
-
Add support for HLO dialects like
mhlo
and otherhlo
family of dialects. -
Add support for adding custom attributes to group/layer nodes.
Use the newgroupNodeAttributes
field ingraph_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'}})
-
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. -
Allow regex filtering node data table rows by node.
Full Changelog: model-explorer-v0.1.9...model-explorer-v0.1.10