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

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!")