diff --git a/how-to-use-azureml/training/manage-runs/hello_with_children.py b/how-to-use-azureml/training/manage-runs/hello_with_children.py deleted file mode 100644 index 953d88fe..00000000 --- a/how-to-use-azureml/training/manage-runs/hello_with_children.py +++ /dev/null @@ -1,11 +0,0 @@ -# Copyright (c) Microsoft. All rights reserved. -# Licensed under the MIT license. - -from azureml.core import Run - -run = Run.get_context() - -child_runs = run.create_children(count=5) -for c, child in enumerate(child_runs): - child.log(name="Hello from child run ", value=c) - child.complete()