Archive runs
To prevent runs from appearing in comparison views and search results, you can archive them.
To move a run to the archive:
- Navigate to the Name column of the runs table.
- Click next to the run name.
- Select Archive run.
You can view archived runs in the Archived runs custom view.
Deleting data from individual runs isn't supported.
Archive experiments
When the runs table is in Experiments mode, Neptune shows only experiment head runs.
When you archive an experiment head, other runs in the experiment aren't affected:
- Neptune doesn't archive any other runs that belong to the experiment.
- No other run in the experiment is promoted to head.
As a result, the experiment is hidden because there's no head run to show. Runs remain visible in Runs mode unless you archive them individually.
Archive runs in bulk
To archive multiple runs at once:
- At the left edge of the Name column, tick the checkboxes.
- In the bottom toolbar, select → Archive.
Run bulk actions aren't available in reports.
Unarchive a run
To unarchive a run:
- Navigate to the All runs tab.
- In the top right, access the custom views menu.
- From the dropdown, select Archived runs.
- Click next to the run name and select Restore run.
To restore runs in bulk:
- At the left edge of the Name column, tick the checkboxes.
- In the bottom toolbar, select → Restore.
Archive runs via API
To archive a run programmatically, use the log_configs()
method to manage the sys/archived
attribute:
from neptune_scale import Run
run = Run(...)
run.log_configs({"sys/archived": True})
run.log_configs({"sys/archived": False})