Skip to content

Commit dbce7b8

Browse files
committed
Fix autoscase
1 parent b091d1f commit dbce7b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

00.configuration.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@
210210
"source": [
211211
"## Create compute resources for your training experiments\n",
212212
"\n",
213-
"Many of the subsequent examples use BatchAI clusters to train models at scale. To create a **CPU** cluster now, run the cell below. The autoscale settings mean that the cluster will scale down to 0 nodes when inactive and up to 8 nodes when busy."
213+
"Many of the subsequent examples use BatchAI clusters to train models at scale. To create a **CPU** cluster now, run the cell below. The autoscale settings mean that the cluster will scale down to 0 nodes when inactive and up to 4 nodes when busy."
214214
]
215215
},
216216
{
@@ -233,7 +233,7 @@
233233
" compute_config = BatchAiCompute.provisioning_configuration(vm_size='STANDARD_D2_V2', \n",
234234
" autoscale_enabled=True,\n",
235235
" cluster_min_nodes=0, \n",
236-
" cluster_max_nodes=6)\n",
236+
" cluster_max_nodes=4)\n",
237237
" cpu_cluster = ComputeTarget.create(ws, cpu_cluster_name, compute_config)\n",
238238
"\n",
239239
"cpu_cluster.wait_for_completion(show_output=True)"
@@ -266,7 +266,7 @@
266266
" compute_config = BatchAiCompute.provisioning_configuration(vm_size='STANDARD_NC6', \n",
267267
" autoscale_enabled=True,\n",
268268
" cluster_min_nodes=0, \n",
269-
" cluster_max_nodes=6)\n",
269+
" cluster_max_nodes=4)\n",
270270
" gpu_cluster = ComputeTarget.create(ws, gpu_cluster_name, compute_config)\n",
271271
"\n",
272272
"gpu_cluster.wait_for_completion(show_output=True)"

0 commit comments

Comments
 (0)