Skip to content

Commit 7a3ab1e

Browse files
authored
Merge pull request #1895 from Azure/release_update/Release-175
update samples from Release-175 as a part of SDK release
2 parents 40b3068 + 598a293 commit 7a3ab1e

File tree

8 files changed

+8
-7
lines changed

8 files changed

+8
-7
lines changed

how-to-use-azureml/automated-machine-learning/automl_env.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ dependencies:
1212
- pandas==1.1.5
1313
- scipy==1.5.3
1414
- Cython==0.29.14
15+
- tqdm==4.64.1
1516

1617
- pip:
1718
# Required packages for AzureML execution, history, and data preparation.

how-to-use-azureml/automated-machine-learning/forecasting-bike-share/auto-ml-forecasting-bike-share.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"\n",
4343
"AutoML highlights here include built-in holiday featurization, accessing engineered feature names, and working with the `forecast` function. Please also look at the additional forecasting notebooks, which document lagging, rolling windows, forecast quantiles, other ways to use the forecast function, and forecaster deployment.\n",
4444
"\n",
45-
"Make sure you have executed the [configuration notebook](../../../configuration.ipynb) before running this notebook.\n",
45+
"Make sure you have executed the [configuration notebook](https://github.com/Azure/MachineLearningNotebooks/blob/master/configuration.ipynb) before running this notebook.\n",
4646
"\n",
4747
"Notebook synopsis:\n",
4848
"1. Creating an Experiment in an existing Workspace\n",

how-to-use-azureml/automated-machine-learning/forecasting-energy-demand/auto-ml-forecasting-energy-demand.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"\n",
4444
"In this example we use the associated New York City energy demand dataset to showcase how you can use AutoML for a simple forecasting problem and explore the results. The goal is predict the energy demand for the next 48 hours based on historic time-series data.\n",
4545
"\n",
46-
"If you are using an Azure Machine Learning Compute Instance, you are all set. Otherwise, go through the [configuration notebook](../../../configuration.ipynb) first, if you haven't already, to establish your connection to the AzureML Workspace.\n",
46+
"If you are using an Azure Machine Learning Compute Instance, you are all set. Otherwise, go through the [configuration notebook](https://github.com/Azure/MachineLearningNotebooks/blob/master/configuration.ipynb) first, if you haven't already, to establish your connection to the AzureML Workspace.\n",
4747
"\n",
4848
"In this notebook you will learn how to:\n",
4949
"1. Creating an Experiment using an existing Workspace\n",

how-to-use-azureml/automated-machine-learning/forecasting-forecast-function/auto-ml-forecasting-function.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"cell_type": "markdown",
5353
"metadata": {},
5454
"source": [
55-
"Please make sure you have followed the `configuration.ipynb` notebook so that your ML workspace information is saved in the config file."
55+
"Please make sure you have followed the [configuration notebook](https://github.com/Azure/MachineLearningNotebooks/blob/master/configuration.ipynb) so that your ML workspace information is saved in the config file."
5656
]
5757
},
5858
{

how-to-use-azureml/automated-machine-learning/forecasting-github-dau/auto-ml-forecasting-github-dau.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"\n",
5353
"AutoML highlights here include using Deep Learning forecasts, Arima, Prophet, Remote Execution and Remote Inferencing, and working with the `forecast` function. Please also look at the additional forecasting notebooks, which document lagging, rolling windows, forecast quantiles, other ways to use the forecast function, and forecaster deployment.\n",
5454
"\n",
55-
"Make sure you have executed the [configuration](../../../configuration.ipynb) before running this notebook.\n",
55+
"Make sure you have executed the [configuration](https://github.com/Azure/MachineLearningNotebooks/blob/master/configuration.ipynb) before running this notebook.\n",
5656
"\n",
5757
"Notebook synopsis:\n",
5858
"\n",

how-to-use-azureml/automated-machine-learning/forecasting-orange-juice-sales/auto-ml-forecasting-orange-juice-sales.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"## Introduction<a id=\"introduction\"></a>\n",
4141
"In this example, we use AutoML to train, select, and operationalize a time-series forecasting model for multiple time-series.\n",
4242
"\n",
43-
"Make sure you have executed the [configuration notebook](../../../configuration.ipynb) before running this notebook.\n",
43+
"Make sure you have executed the [configuration notebook](https://github.com/Azure/MachineLearningNotebooks/blob/master/configuration.ipynb) before running this notebook.\n",
4444
"\n",
4545
"The examples in the follow code samples use the University of Chicago's Dominick's Finer Foods dataset to forecast orange juice sales. Dominick's was a grocery chain in the Chicago metropolitan area."
4646
]

how-to-use-azureml/automated-machine-learning/forecasting-pipelines/auto-ml-forecasting-pipelines.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"source": [
1414
"## Introduction\n",
1515
"\n",
16-
"In this notebook, we demonstrate how to use piplines to train and inference on AutoML Forecasting model. Two pipelines will be created: one for training AutoML model, and the other is for inference on AutoML model. We'll also demonstrate how to schedule the inference pipeline so you can get inference results periodically (with refreshed test dataset). Make sure you have executed the configuration notebook before running this notebook. In this notebook you will learn how to:\n",
16+
"In this notebook, we demonstrate how to use piplines to train and inference on AutoML Forecasting model. Two pipelines will be created: one for training AutoML model, and the other is for inference on AutoML model. We'll also demonstrate how to schedule the inference pipeline so you can get inference results periodically (with refreshed test dataset). Make sure you have executed the [configuration notebook](https://github.com/Azure/MachineLearningNotebooks/blob/master/configuration.ipynb) before running this notebook. In this notebook you will learn how to:\n",
1717
"\n",
1818
"- Configure AutoML using AutoMLConfig for forecasting tasks using pipeline AutoMLSteps.\n",
1919
"- Create and register an AutoML model using AzureML pipeline.\n",

how-to-use-azureml/reinforcement-learning/cartpole-on-single-compute/files/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
88
rm -rf /var/lib/apt/lists/* && \
99
rm -rf /usr/share/man/*
1010

11-
RUN conda install -y conda=4.13.0 python=3.7 && conda clean -ay
11+
RUN conda install -y conda=23.1.0 python=3.7 && conda clean -ay
1212
RUN pip install ray-on-aml==0.2.1 & \
1313
pip install --no-cache-dir \
1414
azureml-defaults \

0 commit comments

Comments
 (0)