Files
MachineLearningNotebooks/how-to-use-azureml/training/manage-runs/hello_with_children.py
Roope Astala 556a41e223 version 1.0.21
2019-03-25 15:06:08 -04:00

12 lines
293 B
Python

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