Skip to content

Instantly share code, notes, and snippets.

@jerbly
Created February 27, 2021 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jerbly/4ae345499619c968a5695802ed5b5bfd to your computer and use it in GitHub Desktop.
Save jerbly/4ae345499619c968a5695802ed5b5bfd to your computer and use it in GitHub Desktop.
est = ScriptRunConfig(source_directory='source',
script='training.py',
environment=myenv,
arguments = ['--input_data', ds.as_named_input('quiddler_ds').as_download(),
'--epochs', 3,
'--batch_size', 6,
'--image_size', 512],
compute_target='local')
# Run the experiment
run = exp.submit(config=est)
# Show the run details while running
RunDetails(run).show()
run.wait_for_completion()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment