Skip to content

Commit 12371d1

Browse files
Merge pull request #216048 from Blackmist/v1-v2
updates
2 parents c6b8803 + bd29d3e commit 12371d1

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

articles/machine-learning/how-to-run-jupyter-notebooks.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -346,11 +346,7 @@ Using the following keystroke shortcuts, you can more easily navigate and run co
346346

347347
* **Expired token**: If you run into an expired token issue, sign out of your Azure ML studio, sign back in, and then restart the notebook kernel.
348348

349-
* **File upload limit**: When uploading a file through the notebook's file explorer, you are limited files that are smaller than 5TB. If you need to upload a file larger than this, we recommend that you use one of the following methods:
350-
351-
* Use the SDK to upload the data to a datastore. For more information, see [Create data assets](how-to-create-data-assets.md?tabs=Python-SDK).
352-
* Use [Azure Data Factory](v1/how-to-data-ingest-adf.md) to create a data ingestion pipeline.
353-
349+
* **File upload limit**: When uploading a file through the notebook's file explorer, you are limited files that are smaller than 5TB. If you need to upload a file larger than this, we recommend that you use the SDK to upload the data to a datastore. For more information, see [Create data assets](how-to-create-data-assets.md?tabs=Python-SDK).
354350

355351
## Next steps
356352

articles/machine-learning/how-to-secure-training-vnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.reviewer: larryfr
1010
ms.author: jhirono
1111
author: jhirono
1212
ms.date: 07/28/2022
13-
ms.custom: contperf-fy20q4, tracking-python, contperf-fy21q1, references_regions, devx-track-azurecli, sdkv1, event-tier1-build-2022
13+
ms.custom: contperf-fy20q4, tracking-python, contperf-fy21q1, references_regions, devx-track-azurecli, sdkv2, event-tier1-build-2022
1414
ms.devlang: azurecli
1515
---
1616

articles/machine-learning/how-to-train-model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ As part of job submission, the training scripts and data must be uploaded to a c
229229
}"
230230
```
231231

232-
1. Register a versioned reference to the training script for use with a job. In this case, the script would be located at `https://azuremlexamples.blob.core.windows.net/testjob`. This `testjob` is the folder in Blob storage that contains the training script and any dependencies needed by the script. In the following example, the ID of the versioned training code is returned and stored in the `$TRAIN_CODE` variable:
232+
1. Register a versioned reference to the training script for use with a job. In this example, the script is located at `https://azuremlexamples.blob.core.windows.net/azureml-blobstore-c8e832ae-e49c-4084-8d28-5e6c88502655/testjob`. This `testjob` is the folder in Blob storage that contains the training script and any dependencies needed by the script. In the following example, the ID of the versioned training code is returned and stored in the `$TRAIN_CODE` variable:
233233

234234
```bash
235235
TRAIN_CODE=$(curl --location --request PUT "https://management.azure.com/subscriptions/$SUBSCRIPTION_ID/resourceGroups/$RESOURCE_GROUP/providers/Microsoft.MachineLearningServices/workspaces/$WORKSPACE/codes/train-lightgbm/versions/1?api-version=$API_VERSION" \
@@ -238,7 +238,7 @@ As part of job submission, the training scripts and data must be uploaded to a c
238238
--data-raw "{
239239
\"properties\": {
240240
\"description\": \"Train code\",
241-
\"codeUri\": \"https://larrystore0912.blob.core.windows.net/azureml-blobstore-c8e832ae-e49c-4084-8d28-5e6c88502655/testjob\"
241+
\"codeUri\": \"https://azuremlexamples.blob.core.windows.net/azureml-blobstore-c8e832ae-e49c-4084-8d28-5e6c88502655/testjob\"
242242
}
243243
}" | jq -r '.id')
244244
```

articles/machine-learning/how-to-train-tensorflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.custom: sdkv2, event-tier1-build-2022
1616

1717
# Train TensorFlow models at scale with Azure Machine Learning
1818

19-
[!INCLUDE [sdk v1](../../includes/machine-learning-sdk-v2.md)]
19+
[!INCLUDE [sdk v2](../../includes/machine-learning-sdk-v2.md)]
2020
> [!div class="op_single_selector" title1="Select the Azure Machine Learning SDK version you are using:"]
2121
> * [v1](v1/how-to-train-tensorflow.md)
2222
> * [v2 (preview)](how-to-train-tensorflow.md)

0 commit comments

Comments
 (0)