mirror of
https://github.com/Azure/MachineLearningNotebooks.git
synced 2025-12-20 09:37:04 -05:00
8 lines
206 B
Python
8 lines
206 B
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
# Licensed under the MIT license.
|
|
|
|
from azureml.core import Run
|
|
|
|
submitted_run = Run.get_context()
|
|
submitted_run.log(name="message", value="Hello from run!")
|