Skip to content

model-explorer-v0.1.11

Compare
Choose a tag to compare
@jinjingforever 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.
    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