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.
Explore a single run
To view all of the run metadata, click on the run name. You can visualize it in the following tabs:
Tab | Keyboard shortcut | Description |
---|---|---|
Attributes | Navigate the complete metadata structure of a run and preview its attributes. | |
Charts | See metrics, such as accuracy or loss, visualized as graphs. | |
Dashboards | Compose 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.