Skip to content

Instantly share code, notes, and snippets.

@joannapurosto
Created August 22, 2019 07:10
Show Gist options
  • Select an option

  • Save joannapurosto/cdb17c8f9a6f2b1fe6476e3a89d35014 to your computer and use it in GitHub Desktop.

Select an option

Save joannapurosto/cdb17c8f9a6f2b1fe6476e3a89d35014 to your computer and use it in GitHub Desktop.
Effective ML workflows with Azure pipelines blog
#!/bin/bash
execution_id="$1"
function get_execution_data() {
curl -L \
-H 'Content-Type: application/json' \
-H "Authorization: Token $VALOHAI_API_TOKEN" \
"https://app.valohai.com/api/v0/executions/$execution_id"
}
get_execution_data | jq '.outputs'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment