Trackio documentation
Launching the Dashboard
Launching the Dashboard
Launching a Local Dashboard
You can launch the dashboard by running:
trackio show
Loading a Specific Project
You can also provide an optional project name as the argument to load a specific project directly:
trackio show --project "my-project"Changing the Theme
You can change the theme of the dashboard by providing an optional theme argument.
trackio show --theme "soft"To see the available themes, check out the themes gallery.
Customizing Plot Colors
You can customize the color palette used for plot lines by providing a color_palette argument. This is useful if you want to match your organization’s branding or have specific color preferences.
trackio show --color-palette "#FF0000,#00FF00,#0000FF"The colors will be cycled through when displaying multiple runs. You can provide as many or as few colors as you like.
Launching a Dashboard in Jupyter Notebooks
You can also launch the dashboard directly within a Jupyter Notebook. Just use the same command as above:
import trackio
trackio.show()Check the demo notebook.
Update on GitHub