Set custom run name#
To title a new experiment, pass a string to the name
argument of the init_run()
function.
The custom name is stored in the sys/name
field. It can function as a human-readable ID for the run.
Displaying the custom name#
To display the custom name in the table view, add the sys/name
field:
- Click Add column.
- Select the
sys/name
field.
To show the name in chart legends:
- On the Name column, click → Pin column.
Editing the name#
In the app#
You can edit the name of an existing run directly in the Neptune app.
- Open the run menu ( ) next to the ID and select Run information.
- In the Name box, enter a custom name.
- To save the name, click the check mark ().
Via the API#
To edit the name of an existing run, assign a new string to the sys/name
field.
Add or change name for existing run
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"] = "anteater-daisy"