danielsc/azureml-workshop-2019

[AutoML SDK] Can an AutoML experiment be submitted async from the notebook?

Closed this issue · 1 comments

[AutoML SDK] Can an experiment be submitted async from the notebook?

When using the following, it is synchronous, so you canot see the widget info untuil the whole AutoML process is completed:

run = experiment.submit(automl_config, show_output=True)

The following cell cannot be run until AutoML is done:

image

Is there any way to submit asyn the AutoML process from the notebook?

Closing. Running with show_output=False runs async:

run = experiment.submit(automl_config, show_output=False)

image