model-explorer-v0.1.11
jinjingforever
released this
03 Sep 21:26
·
111 commits
to main
since this release
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.
-
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 settingreuse_server
parameter toTrue
, 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