Challenge 1 – Run model locally & and import repo into Azure DevOps

< Previous Challenge - Home - Next Challenge >

Introduction

The objective of challenge is to forecast the daily transactions using time series ARIMA modeling. It includes processing the transactions data from AdventureWorks database, analyzing it, creating and registering an ARIMA model, and finally deploying the model to an ACI instance. This entire lifecycle is done using Azure ML Python SDK.

Time series is a series of data points collected or indexed in time order at regular time points. It is a sequence taken at successive equally spaced time points. For example, weather data collected every hour or stock data collected every day or sensor data collected every minute. As a result, we see a trend and seasonality in time-series datasets. It is this temporal nature that makes them different from other conventional datasets and warrants a different type of modeling. We will cover that in this challenge as forecasting is one of the most common and prevalent tasks in Machine Learning.

Description

Success Criteria

Learning resources