Skip to main content
App version: 3.4.13

Analyze a single run

You can use the Neptune app to explore individual runs and their metadata.

Show all runs

By default, the runs table only shows head runs of experiments. To list all runs, switch from Experiments to Runs mode.

Charts tab in the Neptune app. The buttons for switching between Experiments and Runs modes are highlighted.

Explore a single run

To view all of the run metadata, click on the run name. You can visualize it in the following tabs:

TabKeyboard shortcutDescription
Attributes1Navigate the complete metadata structure of a run and preview its attributes.
Charts2See metrics, such as accuracy or loss, visualized as graphs.
Dashboards3Compose your own set of custom widgets.

To show the most relevant metadata in a single view, create a custom dashboard and then open runs one by one to compare their data.

Construct run URL

To get a link to the run in the Neptune web app, use:

from neptune_scale import Run


run = Run(...)
run.get_run_url()

For details, see Construct Neptune URLs.