tt-explorer CLI

This section provides a details about the usage of tt-explorer.

Input Models

Currently tt-explorer supports 3 types of models that can be executed/visualized.

Input TypeExecution SupportVisualization Support
.ttnn Flatbuffers with Debug Info✔️✔️
.ttnn Flatbuffers without Debug Info
.mlir TTIR Modules✔️✔️
.mlir TTNN Modules✔️

CLI

The CLI for tt-explorer provides a simple suite of options to start the UI:

tt-explorer -p <port> -u <url> -q

Options

-p, --port
Port that model-explorer server will be exposed to. Default is 8080.
-u, --url
Host URL Address for server. Default is "localhost".
-q, --no-browser
Create server without opening a browser tab.

Example usage:

tt-explorer -p 8000 -u 0.0.0.0 -q

This command will start the tt-explorer server on port 8000, accessible at the address 0.0.0.0, and without opening a browser tab.