From 5d9d8eade69551a8f85db481c8d5e0d53b2c2aa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Shan=C3=A9=20Winner?= <43390034+swinner95@users.noreply.github.com> Date: Sun, 22 Sep 2019 20:36:39 -0700 Subject: [PATCH] Delete hello_with_children.py --- .../training/manage-runs/hello_with_children.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 how-to-use-azureml/training/manage-runs/hello_with_children.py 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()