wandb_finish Subroutine

public subroutine wandb_finish()

Finish the current wandb run (calls wandb.finish()) but keeps the Python interpreter alive. Safe to call between sweep runs. For the very last teardown call wandb_shutdown() as well.

Arguments

None

Source Code

  subroutine wandb_finish()
    !! Finish the current wandb run (calls wandb.finish()) but keeps the
    !! Python interpreter alive.  Safe to call between sweep runs.
    !! For the very last teardown call wandb_shutdown() as well.
    call wandb_finish_c()
  end subroutine wandb_finish