Created
August 22, 2019 07:10
-
-
Save joannapurosto/cdb17c8f9a6f2b1fe6476e3a89d35014 to your computer and use it in GitHub Desktop.
Effective ML workflows with Azure pipelines blog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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