From b886a5e2e1fda32378bdceb74f40ce1c3cc02f44 Mon Sep 17 00:00:00 2001 From: Sheri Gilley Date: Mon, 27 Mar 2023 14:32:55 -0500 Subject: [PATCH 1/2] remove experiment_name --- tutorials/get-started-notebooks/quickstart.ipynb | 1 - tutorials/get-started-notebooks/train-model.ipynb | 1 - 2 files changed, 2 deletions(-) diff --git a/tutorials/get-started-notebooks/quickstart.ipynb b/tutorials/get-started-notebooks/quickstart.ipynb index 77ee3d436b..dab82828c3 100644 --- a/tutorials/get-started-notebooks/quickstart.ipynb +++ b/tutorials/get-started-notebooks/quickstart.ipynb @@ -371,7 +371,6 @@ " command=\"python main.py --data ${{inputs.data}} --test_train_ratio ${{inputs.test_train_ratio}} --learning_rate ${{inputs.learning_rate}} --registered_model_name ${{inputs.registered_model_name}}\",\n", " environment=\"AzureML-sklearn-1.0-ubuntu20.04-py38-cpu@latest\",\n", " compute=\"cpu-cluster\",\n", - " experiment_name=\"train_model_credit_default_prediction\",\n", " display_name=\"credit_default_prediction\",\n", ")" ] diff --git a/tutorials/get-started-notebooks/train-model.ipynb b/tutorials/get-started-notebooks/train-model.ipynb index 2b44517a2b..887c535f9b 100644 --- a/tutorials/get-started-notebooks/train-model.ipynb +++ b/tutorials/get-started-notebooks/train-model.ipynb @@ -507,7 +507,6 @@ " command=\"python main.py --data ${{inputs.data}} --test_train_ratio ${{inputs.test_train_ratio}} --learning_rate ${{inputs.learning_rate}} --registered_model_name ${{inputs.registered_model_name}}\",\n", " environment=\"aml-scikit-learn@latest\",\n", " compute=\"cpu-cluster\",\n", - " experiment_name=\"train_model_credit_default_prediction\",\n", " display_name=\"credit_default_prediction\",\n", ")" ] From e93d0bb2f15903198ee0505efd0e2e5c88bb29f4 Mon Sep 17 00:00:00 2001 From: Sheri Gilley Date: Mon, 27 Mar 2023 14:44:25 -0500 Subject: [PATCH 2/2] remove bullet --- tutorials/get-started-notebooks/quickstart.ipynb | 7 +++---- tutorials/get-started-notebooks/train-model.ipynb | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/tutorials/get-started-notebooks/quickstart.ipynb b/tutorials/get-started-notebooks/quickstart.ipynb index dab82828c3..78992e1bf1 100644 --- a/tutorials/get-started-notebooks/quickstart.ipynb +++ b/tutorials/get-started-notebooks/quickstart.ipynb @@ -336,7 +336,6 @@ "Here, you'll create input variables to specify the input data, split ratio, learning rate and registered model name. The command script will:\n", "* Use the compute cluster to run the command.\n", "* Use an *environment* that defines software and runtime libraries needed for the training script. Azure Machine Learning provides many curated or ready-made environments, which are useful for common training and inference scenarios. You'll use one of those environments here. In the [Train a model](train-model.ipynb) tutorial, you'll learn how to create a custom environment. \n", - "* Configure some metadata like display name, experiment name etc. An *experiment* is a container for all the iterations you do on a certain project. All the jobs submitted under the same experiment name would be listed next to each other in Azure Machine Learning studio.\n", "* Configure the command line action itself - `python main.py` in this case. The inputs/outputs are accessible in the command via the `${{ ... }}` notation.\n", "* In this sample, we access the data from a file on the internet. " ] @@ -708,9 +707,9 @@ "name": "python310-sdkv2" }, "kernelspec": { - "display_name": "Python 3.10 - SDK v2", - "language": "python", - "name": "python310-sdkv2" + "display_name": "Python 3.10 - SDK v2", + "language": "python", + "name": "python310-sdkv2" }, "language_info": { "codemirror_mode": { diff --git a/tutorials/get-started-notebooks/train-model.ipynb b/tutorials/get-started-notebooks/train-model.ipynb index 887c535f9b..1ff91ede81 100644 --- a/tutorials/get-started-notebooks/train-model.ipynb +++ b/tutorials/get-started-notebooks/train-model.ipynb @@ -473,7 +473,6 @@ "Here, create input variables to specify the input data, split ratio, learning rate and registered model name. The command script will:\n", "* Use the compute created earlier to run this command.\n", "* Use the environment created earlier - you can use the `@latest` notation to indicate the latest version of the environment when the command is run.\n", - "* Configure some metadata like display name, experiment name etc. An *experiment* is a container for all the iterations you do on a certain project. All the jobs submitted under the same experiment name are next to each other in Azure Machine Learning studio.\n", "* Configure the command line action itself - `python main.py` in this case. The inputs/outputs are accessible in the command via the `${{ ... }}` notation." ] }, @@ -605,9 +604,9 @@ "name": "python310-sdkv2" }, "kernelspec": { - "display_name": "Python 3.10 - SDK v2", - "language": "python", - "name": "python310-sdkv2" + "display_name": "Python 3.10 - SDK v2", + "language": "python", + "name": "python310-sdkv2" }, "language_info": { "codemirror_mode": {