Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created July 19, 2022 03:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IntegerMan/eead61f715e73cb23e898aa415dde226 to your computer and use it in GitHub Desktop.
Save IntegerMan/eead61f715e73cb23e898aa415dde226 to your computer and use it in GitHub Desktop.
from azureml.core.experiment import Experiment
from azureml.widgets import RunDetails
# Find or Create a Machine Learning Experiment in Azure Machine Learning Studio
experiment_name = 'My-Regression-Experiment'
experiment=Experiment(ws, experiment_name)
# Start running the experiment
run = experiment.submit(automl_config)
# Wait for the experiment to complete (displays active details about the run)
RunDetails(run).show()
run.wait_for_completion(show_output=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment