forked from maitre-matt/azureml-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the candidate for SDK - 0.1.0 (Azure#1721)
* Updating the candidate for SDK - 0.1.0b8 * Replacing path with source for load method * Updating load components parameter for more notebooks * Update sdk target * Update notebooks to wait for result from LROPoller * Fix malformed notebook * Update CLI version * Get result from LROPoller from job-schedule notebook * Update sdk release candidate * Remove extraneous result from schedules notebook * Updating the configurations of notebook for working_with_mltable * Wait for compute operations * Get result from LRO poller in online-endpoints-safe-rollout * Update SDK release candidate * Update CLI extension version * Update SDK version * online_deployments.delete -> online_deployments.begin_delete * Update SDK version * Update SDK version * UserIdentity -> UserIdentityConfiguration * Add missing .result() from online-endpoints-safe-rollout * online_endpoints.(list_keys -> get_keys) * USe publicly available artifacts for SDK and CLI Co-authored-by: Harneet Virk <[email protected]>
- Loading branch information
1 parent
7404fd5
commit c1077bc
Showing
8 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -331,7 +331,7 @@ | |
"* Note that we are passing the webpath directly as an input\n", | ||
"* Use the compute created earlier to run this command.\n", | ||
"* Use the curated environment which was declared earlier. \n", | ||
"* In this example, we are using the `UserIdentity` to run the command, which means it will be using your identity to run this command and access the data from the blob\n", | ||
"* In this example, we are using the `UserIdentityConfiguration` to run the command, which means it will be using your identity to run this command and access the data from the blob\n", | ||
"* Configure the command line action itself - in this case, the command is `python tf_mnist.py`. You can access the inputs/outputs in the command via the `${{ ... }}` notation.\n", | ||
"* Configure some metadata like display name, experiment name etc. An experiment is a container for all the iterations one does on a certain project. All the jobs submitted under the same experiment name would be listed next to each other in Azure ML studio.\n" | ||
] | ||
|
@@ -345,7 +345,7 @@ | |
"outputs": [], | ||
"source": [ | ||
"from azure.ai.ml import command\n", | ||
"from azure.ai.ml import UserIdentity\n", | ||
"from azure.ai.ml import UserIdentityConfiguration\n", | ||
"from azure.ai.ml import Input\n", | ||
"\n", | ||
"web_path = \"wasbs://[email protected]/mnist/\"\n", | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -257,7 +257,7 @@ | |
"* Note that we are passing the webpath directly as an input\n", | ||
"* Use the compute created earlier to run this command.\n", | ||
"* Use the curated environment which was declared earlier. \n", | ||
"* In this example, we are using the `UserIdentity` to run the command, which means it will be using your identity to run this command and access the data from the blob\n", | ||
"* In this example, we are using the `UserIdentityConfiguration` to run the command, which means it will be using your identity to run this command and access the data from the blob\n", | ||
"* Configure the command line action itself - in this case, the command is `python tf_mnist.py`. You can access the inputs/outputs in the command via the `${{ ... }}` notation.\n", | ||
"* Configure some metadata like display name, experiment name etc. An experiment is a container for all the iterations one does on a certain project. All the jobs submitted under the same experiment name would be listed next to each other in Azure ML studio.\n" | ||
] | ||
|
@@ -271,7 +271,7 @@ | |
"outputs": [], | ||
"source": [ | ||
"from azure.ai.ml import command\n", | ||
"from azure.ai.ml import UserIdentity\n", | ||
"from azure.ai.ml import UserIdentityConfiguration\n", | ||
"from azure.ai.ml import Input\n", | ||
"\n", | ||
"web_path = \"wasbs://[email protected]/mnist/\"\n", | ||
|
This file contains 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