* updated content section

* minor change

* address comments

* add links

Former-commit-id: ddd0374463
This commit is contained in:
Chenhui Hu 2020-04-06 15:46:20 -04:00 коммит произвёл GitHub
Родитель 85452929f7
Коммит f8efa1d54d
1 изменённых файлов: 19 добавлений и 14 удалений

Просмотреть файл

@ -9,21 +9,26 @@ The examples and best practices are provided as [Python Jupyter notebooks and R
## Content ## Content
The following is a summary of models or methods for developing forecasting solutions covered in this repository. The [examples](examples) are organized according to use cases. Currently, we focus on a retail sales forecasting use case as it is widely used in [assortment planning](https://repository.upenn.edu/cgi/viewcontent.cgi?article=1569&context=edissertations), [inventory optimization](https://en.wikipedia.org/wiki/Inventory_optimization), and [price optimization](https://en.wikipedia.org/wiki/Price_optimization). The following is a summary of models and methods for developing forecasting solutions covered in this repository. The [examples](examples) are organized according to use cases. Currently, we focus on a retail sales forecasting use case as it is widely used in [assortment planning](https://repository.upenn.edu/cgi/viewcontent.cgi?article=1569&context=edissertations), [inventory optimization](https://en.wikipedia.org/wiki/Inventory_optimization), and [price optimization](https://en.wikipedia.org/wiki/Price_optimization). To enable high-throughput forecasting scenarios, we have included examples for forecasting multiple time series with distributed training techniques such as Ray in Python, parallel package in R, and multi-threading in LightGBM.
| Model/Method | Language | Type | Description | | Model | Language | Description |
|---------------------|----------|----------------------------|-------------------------------------------------------------------------------------------------------------| |---------------------------------------------------------------------------------------------------|----------|-------------------------------------------------------------------------------------------------------------|
| Auto ARIMA | Python | Statistical | Auto Regressive Integrated Moving Average (ARIMA) model that is automatically selected | | [Auto ARIMA](examples/grocery_sales/python/00_quick_start/autoarima_single_round.ipynb) | Python | Auto Regressive Integrated Moving Average (ARIMA) model that is automatically selected |
| Linear Regression | Python | Classical Machine Learning | Linear regression model trained on lagged features of the target variable and external features | | [Linear Regression](examples/grocery_sales/python/00_quick_start/azure_automl_single_round.ipynb) | Python | Linear regression model trained on lagged features of the target variable and external features |
| LightGBM | Python | Classical Machine Learning | Gradient boosting decision tree implemented with LightGBM package for high accuracy and fast speed | | [LightGBM](examples/grocery_sales/python/00_quick_start/lightgbm_single_round.ipynb) | Python | Gradient boosting decision tree implemented with LightGBM package for high accuracy and fast speed |
| DilatedCNN | Python | Deep Learning | Dilated Convolutional Neural Network that captures long-range temporal flow with dilated causal connections | | [DilatedCNN](examples/grocery_sales/python/02_model/dilatedcnn_multi_round.ipynb) | Python | Dilated Convolutional Neural Network that captures long-range temporal flow with dilated causal connections |
| AutoML | Python | AzureML | AzureML service that automates model development process and identifies the best machine learning pipeline | | [Mean Forecast](examples/grocery_sales/R/02_basic_models.Rmd) | R | Simple forecasting method based on historical mean |
| HyperDrive | Python | AzureML | Azure ML service for tuning hyperparameters of machine learning models in parallel on cloud | | [ARIMA](examples/grocery_sales/R/02a_reg_models.Rmd) | R | ARIMA model without or with external features |
| AzureML Web Service | Python | AzureML | Azure ML service for deploying a model as a web service on Azure Container Instances | | [ETS](examples/grocery_sales/R/02_basic_models.Rmd) | R | Exponential Smoothing algorithm with additive errors |
| Mean Forecast | R | Statistical | Simple forecasting method based on historical mean | | [Prophet](examples/grocery_sales/R/02b_prophet_models.Rmd) | R | Automated forecasting procedure based on an additive model with non-linear trends |
| ARIMA | R | Statistical | ARIMA model without or with external features |
| ETS | R | Statistical | Exponential Smoothing algorithm with additive errors | The repository also comes with AzureML-themed notebooks and best practices recipes to accelerate the development of scalable, production-grade forecasting solutions on Azure. In particular, we have the following examples for forecasting with Azure AutoML as well as tuning and deploying a forecasting model on Azure.
| Prophet | R | Statistical | Automated forecasting procedure based on an additive model with non-linear trends |
| Method | Language | Description |
|-----------------------------------------------------------------------------------------------------------|----------|------------------------------------------------------------------------------------------------------------|
| [Azure AutoML](examples/grocery_sales/python/00_quick_start/azure_automl_single_round.ipynb) | Python | AzureML service that automates model development process and identifies the best machine learning pipeline |
| [HyperDrive](examples/grocery_sales/python/03_model_tune_deploy/azure_hyperdrive_lightgbm.ipynb) | Python | AzureML service for tuning hyperparameters of machine learning models in parallel on cloud |
| [AzureML Web Service](examples/grocery_sales/python/03_model_tune_deploy/azure_hyperdrive_lightgbm.ipynb) | Python | AzureML service for deploying a model as a web service on Azure Container Instances |
## Getting Started in Python ## Getting Started in Python