Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update comments
  • Loading branch information
sdgilley committed Jan 22, 2019
commit 7db93bcb1d9db4c6e4099c83090b79fd8800f32a
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@
# <useWs>
from azureml.core import Experiment

# create a new experiment
# Create a new experiment in your workspace.
exp = Experiment(workspace=ws, name='myexp')

# start a run
# Start a run and start the logging service.
run = exp.start_logging()

# log a number
# Log a single number.
run.log('my magic number', 42)

# log a list (Fibonacci numbers)
# Log a list (Fibonacci numbers).
run.log_list('my list', [1, 1, 2, 3, 5, 8, 13, 21, 34, 55])

# finish the run
# Finish the run.
run.complete()
# </useWs>

Expand Down