mirror of
https://github.com/Azure/MachineLearningNotebooks.git
synced 2025-12-20 01:27:06 -05:00
12 lines
293 B
Python
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()
|