Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Awesome Project Ideas | 6,856 | 3 months ago | 1 | mit | ||||||
Curated list of Machine Learning, NLP, Vision, Recommender Systems Project Ideas | ||||||||||
Time Series Forecasting With Python | 499 | 17 days ago | 7 | Jupyter Notebook | ||||||
A use-case focused tutorial for time series forecasting with python | ||||||||||
Trajectron Plus Plus | 484 | 2 months ago | 7 | mit | Jupyter Notebook | |||||
Code accompanying the ECCV 2020 paper "Trajectron++: Dynamically-Feasible Trajectory Forecasting With Heterogeneous Data" by Tim Salzmann*, Boris Ivanovic*, Punarjay Chakravarty, and Marco Pavone (* denotes equal contribution). | ||||||||||
Etdataset | 290 | 2 years ago | other | |||||||
The Electricity Transformer dataset is collected to support the further investigation on the long sequence forecasting problem. | ||||||||||
Wayeb | 139 | 2 years ago | other | Scala | ||||||
Wayeb is a Complex Event Processing and Forecasting (CEP/F) engine written in Scala. | ||||||||||
Awesome Time Series Analysis | 99 | 2 years ago | ||||||||
This list collects learning resource, tools and dataset for time series analysis/time series data mining. | ||||||||||
Deep Quant | 98 | 4 years ago | 1 | mit | Python | |||||
Deep learning for forecasting company fundamental data | ||||||||||
Keras Lstm Trajectory Prediction | 81 | 10 months ago | 1 | Python | ||||||
A Keras multi-input multi-output LSTM-based RNN for object trajectory forecasting | ||||||||||
Tsforecasting | 79 | 7 months ago | other | R | ||||||
This repository contains the implementations related to the experiments of a set of publicly available datasets that are used in the time series forecasting research space. | ||||||||||
Forecastml | 76 | 3 years ago | 5 | May 07, 2020 | 7 | other | R | |||
An R package with Python support for multi-step-ahead forecasting with machine learning and deep learning algorithms |
In this Github repo, we provide several datasets could be used for the long sequence time-series problem. All datasets have been preprocessed and they were stored as .csv
files. The dataset ranges from 2016/07 to 2018/07. | ChineseVersion
Dataset list (updating)
If you use this dataset please cite the work Informer @ AAAI2021 Best Paper Award
[paper][code][video]:
@inproceedings{haoyietal-informer-2021,
author = {Haoyi Zhou and
Shanghang Zhang and
Jieqi Peng and
Shuai Zhang and
Jianxin Li and
Hui Xiong and
Wancai Zhang},
title = {Informer: Beyond Efficient Transformer for Long Sequence Time-Series Forecasting},
booktitle = {The Thirty-Fifth {AAAI} Conference on Artificial Intelligence, {AAAI} 2021, Virtual Conference},
volume = {35},
number = {12},
pages = {11106--11115},
publisher = {{AAAI} Press},
year = {2021},
}
The electric power distribution problem is the distribution of electricity to different areas depends on its sequential usage. But predicting the following demand of a specific area is difficult, as it varies with weekdays, holidays, seasons, weather, temperatures, etc. However, no existing method can perform a long-term prediction based on super long-term real-world data with high precision. Any false prophecy may damage the electrical transformer. So currently, without an efficient method to predict future electric usage, managers have to make decisions based on the empirical number, which is much higher than the real-world demands. It causes unnecessary waste of electric and equipment depreciation. On the other hand, the oil temperatures can reflect the conditon of electricity Transformer. One of the most efficient strategies is to predict how the electrical transformers' oil temperature is safe and avoid unnecessary waste. As a result, to address this problem, our team and Beijing Guowang Fuda Science & Technology Development Company built a real-world platform and collected 2-year data. We work on it to predict the electrical transformers' oil temperature and investigate the extreme load capacity.
We donated two years of data, in which each data point is recorded every minute (marked by m), and they were from two regions of a province of China, named ETT-small-m1 and ETT-small-m2, respectively. Each dataset contains 2 year * 365 days * 24 hours * 4 times = 70,080 data point. Besides, we also provide the hourly-level variants for fast development (marked by h), i.e. ETT-small-h1 and ETT-small-h2. Each data point consists of 8 features, including the date of the point, the predictive value "oil temperature", and 6 different types of external power load features.
Figure 1.The overall view of "OT" in the ETT-small. Figure 2.The autocorrelation graph of all variables.
Specifically, the dataset combines short-term periodical patterns, long-term periodical patterns, long-term trends, and many irregular patterns. We firstly give an overall view in Figure 1, and it shows evident seasonal trends. To better examine the existence of long-term and short-term repetitive patterns, we plot the autorcorrelation graph for all the variables of the ETT-small-h1 dataset in Figure 2. The blue line in the above is the target 'oil temperature', and it maintains some short-term local continuity. However, the other variables (power load) shows short-term daily pattern (every 24 hours) and long-term week pattern (every 7 days).
We use the .csv
file format to save the data, a demo of the ETT-small data is illustrated in Figure 3. The first line (8 columns) is the horizontal header and includes "date", "HUFL", "HULL", "MUFL", "MULL", "LUFL", "LULL" and "OT". The detailed meaning of each column name is shown in the Table 1.
Figure 3. A demo of the ETT data.
Field | date | HUFL | HULL | MUFL | MULL | LUFL | LULL | OT |
---|---|---|---|---|---|---|---|---|
Description | The recorded date | High UseFul Load | High UseLess Load | Middle UseFul Load | Middle UseLess Load | Low UseFul Load | Low UseLess Load | Oil Temperature (target) |
Table 1. Description for each columm.