diff --git a/tutorials/azureml-in-a-day/azureml-in-a-day.ipynb b/tutorials/azureml-in-a-day/azureml-in-a-day.ipynb index c76935e465..da43a71cd2 100644 --- a/tutorials/azureml-in-a-day/azureml-in-a-day.ipynb +++ b/tutorials/azureml-in-a-day/azureml-in-a-day.ipynb @@ -177,13 +177,14 @@ " # Dedicated or LowPriority. The latter is cheaper but there is a chance of job termination\n", " tier=\"Dedicated\",\n", " )\n", + + " print(\n", + " f\"AMLCompute with name {cpu_cluster.name} will be created, with compute size {cpu_cluster.size}\"\n", + " )", "\n", " # Now, we pass the object to MLClient's create_or_update method\n", " cpu_cluster = ml_client.compute.begin_create_or_update(cpu_cluster)\n", - "\n", - "print(\n", - " f\"AMLCompute with name {cpu_cluster.name} is created, the compute size is {cpu_cluster.size}\"\n", - ")" + "\n" ] }, {