Skip to content

Commit 648b48f

Browse files
authored
Merge pull request Azure#247 from rastala/master
version 1.0.18
2 parents f737db4 + 04db5d9 commit 648b48f

File tree

10 files changed

+1026
-387
lines changed

10 files changed

+1026
-387
lines changed

configuration.ipynb

+373-373
Large diffs are not rendered by default.

contrib/RAPIDS/azure-ml-with-nvidia-rapids.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"cell_type": "markdown",
2121
"metadata": {},
2222
"source": [
23-
"The [RAPIDS](https://www.developer.nvidia.com/rapids) suite of software libraries from NVIDIA enables the execution of end-to-end data science and analytics pipelines entirely on GPUs. In many machine learning projects, a significant portion of the model training time is spent in setting up the data; this stage of the process is known as Extraction, Transformation and Loading, or ETL. By using the DataFrame API for ETL and GPU-capable ML algorithms in RAPIDS, data preparation and training models can be done in GPU-accelerated end-to-end pipelines without incurring serialization costs between the pipeline stages. This notebook demonstrates how to use NVIDIA RAPIDS to prepare data and train model in Azure.\n",
23+
"The [RAPIDS](https://www.developer.nvidia.com/rapids) suite of software libraries from NVIDIA enables the execution of end-to-end data science and analytics pipelines entirely on GPUs. In many machine learning projects, a significant portion of the model training time is spent in setting up the data; this stage of the process is known as Extraction, Transformation and Loading, or ETL. By using the DataFrame API for ETL\u00c2\u00a0and GPU-capable ML algorithms in RAPIDS, data preparation and training models can be done in GPU-accelerated end-to-end pipelines without incurring serialization costs between the pipeline stages. This notebook demonstrates how to use NVIDIA RAPIDS to prepare data and train model\u00c2\u00a0in Azure.\n",
2424
" \n",
2525
"In this notebook, we will do the following:\n",
2626
" \n",
@@ -406,4 +406,4 @@
406406
},
407407
"nbformat": 4,
408408
"nbformat_minor": 2
409-
}
409+
}

how-to-use-azureml/automated-machine-learning/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ bash automl_setup_linux.sh
119119
- Retrieving models for any iteration or logged metric
120120
- Specify automl settings as kwargs
121121

122-
- [auto-ml-remote-batchai.ipynb](remote-batchai/auto-ml-remote-batchai.ipynb)
122+
- [auto-ml-remote-amlcompute.ipynb](remote-batchai/auto-ml-remote-amlcompute.ipynb)
123123
- Dataset: scikit learn's [digit dataset](http://scikit-learn.org/stable/modules/generated/sklearn.datasets.load_digits.html#sklearn.datasets.load_digits)
124124
- Example of using automated ML for classification using remote AmlCompute for training
125125
- Parallel execution of iterations

how-to-use-azureml/automated-machine-learning/dataprep-remote-execution/auto-ml-dataprep-remote-execution.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
" dsvm_compute = DsvmCompute.create(ws, name = dsvm_name, provisioning_configuration = dsvm_config)\n",
196196
" dsvm_compute.wait_for_completion(show_output = True)\n",
197197
" print(\"Waiting one minute for ssh to be accessible\")\n",
198-
" time.sleep(60) # Wait for ssh to be accessible"
198+
" time.sleep(90) # Wait for ssh to be accessible"
199199
]
200200
},
201201
{

0 commit comments

Comments
 (0)