From the course: Applied AI for IT Operations (AIOps)
Unlock the full course today
Join today to access over 24,700 courses taught by industry experts.
Preparing sequence data - Python Tutorial
From the course: Applied AI for IT Operations (AIOps)
Preparing sequence data
- [Instructor] In this video, we will explore and prepare the time series data for deep learning. We want to predict the service request loads for the future, and we will use the service request loads in the past as training data. The training data is available in the file request_every_hour.csv. Each record contains the total request for a given hour. The file is contains continuous hourly sample points for a period of five weeks. The notebook for this chapter is available in code_04_XX Forecasting Service Loads. Let's open the notebook. We first make sure that all the dependent packages are installed. If not, install them. First, we load up the CSV containing the time series and explore its content. There is only one column containing the request. This is both the feature and the target variable for our machine learning. We are using the past request loads to predict the future request loads. Let's run this code and review the results. The data is successfully loaded now. Next…
Practice while you learn with exercise files
Download the files the instructor uses to teach the course. Follow along and learn by watching, listening and practicing.
Contents
-
-
-
-
-
-
Time series forecasting2m 27s
-
(Locked)
Recurrent neural network (RNN) and long short-term memory (LSTM)1m 37s
-
(Locked)
Preparing sequence data4m 8s
-
(Locked)
Building an LSTM model with Keras2m 19s
-
(Locked)
Testing the time series model2m 30s
-
(Locked)
Forecasting future service loads with Keras3m 10s
-
-
-
-
-