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.
note
Deleting data from individual runs isn't supported.
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.
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:
Archive a run
from neptune_scale import Run
run = Run()
run.log_configs({"sys/archived": True})
Unarchive a run
run.log_configs({"sys/archived": False})