Delete hello_with_children.py

This commit is contained in:
Shané Winner
2019-09-22 20:36:39 -07:00
committed by GitHub
parent dba978e42a
commit 5d9d8eade6

View File

@@ -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()