Resume an experiment
To continue logging to an existing run, use the Run()
constructor and:
- Pass the run identifier to the
run_id
argument. - Set the
resume
argument toTrue
.
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"])