Skip to content

Setting custom run name#

You can title your experiment by setting a custom name for your run.

The custom name is stored in the sys/name field and displayed in the run details.

To title the run, pass the text to the name argument of the init_run() function:

import neptune

# Create a run with a custom name
run = neptune.init_run(name="First PyTorch ever")

Tip

You can display the name in the runs table by adding sys/name as a column.