Edit name or description#
You can modify the name, description, and tags of any run object in the Information view. This is a way to annotate or add comments to your runs or other Neptune objects.
The text behaves like any other string field, so you can filter and search by them.
To edit the details in the web app:
-
Next to the run ID, click the run menu ( ) and select Run information.
-
Edit the information as needed.
- When you're done, click the check mark ().
Edit information via API#
New run#
Pass the name and description as arguments when initializing a new run:
Existing run#
To overwrite the name or description, access the sys/name
or sys/description
field, respectively:
import neptune
run = neptune.init_run(
with_id="NLI-8",
capture_hardware_metrics=False,
capture_stderr=False,
capture_stdout=False,
capture_traceback=False,
git_ref=False,
source_code=[],
)
run["sys/name"] = "armadillo-buttercup"
run["sys/description"] = "A different description of the experiment"
Editing the sys
fields also works for new runs.
Show custom name in table or legend#
To display the custom name in the table view and chart legends, add and pin the sys/name
field:
- Click Add column.
- Select the
sys/name
field. - On the Name column that appears, click the icon on the column and select Pin column.