An Azure machine learning service for building and deploying models.
@Mo Zein start_logging will create a run object similar to experiment.submit() but in the case of start_logging you can create an interactive logging session and create an interactive run in the specified experiment and in either case, the logging methods on the returned run object work the same.
For example,
run = exp.start_logging() #Will give you the context of run object directly
run_id = run.id # access the run id for use later
Run = experiment.submit()
run = Run.get_context() #To access the current run context of your code
I think this notebook explains the usage of logging better in this context.
If an answer is helpful, please click on
or upvote
which might help other community members reading this thread.