Skip to main content

Resume an experiment

To continue logging to an existing run, use the Run() constructor and:

  1. Pass the run identifier to the run_id argument.
  2. Set the resume argument to True.
run = Run(
run_id="SomeExistingRunId",
resume=True,
)

After resuming a connection to the run, you can continue logging normally.

For example, to add best to the list of tags:

from neptune_scale import Run

run = Run(
run_id="seagull-s68kj78",
resume=True,
)

run.add_tags(tags=["best"])