You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/arima.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
4
4
## Introduction
5
-
ARIMA is a short for "Autoregressive Integrated Moving Average model", it's a traditional time-series-prediction model. Basically it's a linear model combined the auto regression model and moving average model.
5
+
ARIMA is a short for "Auto-regressive Integrated Moving Average model", it's a traditional time-series-prediction model. Basically it's a linear model combined the auto regression model and moving average model.
6
6
- Auto regression model is a linear regression model using the history data as its feature. The important hyper parameter is how many days from history are used.
7
7
- Moving average model is a linear regression model using the history residual error as its feature. The important hyper parameter is also history data length.
Gradient boosting decision tree is also the promising solutions for time series issues.
4
5
5
6
## Introduction of XGBoost
7
+
XGBoost is introduced in [XGBoost: A Scalable Tree Boosting System](https://arxiv.org/abs/1603.02754)
6
8
7
9
## Introduction of LightGBM
10
+
LightGBM is introduces in [LightGBM: A Highly Efficient Gradient Boosting Decision Tree](http://papers.nips.cc/paper/6907-lightgbm-a-highly-efficient-gradient-boosting-decision-tree.pdf)
8
11
9
12
## Performance
13
+
GBDT could also be tuned into SOTA model in time series. I read some implementations of the competition to let me so sure that I'm not so good at tuning the parameters.
14
+
So I believe the performance here could be further optimized.
Copy file name to clipboardExpand all lines: docs/wavenet.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,21 @@
1
1
# Wavenet
2
2
3
3
## Introduction
4
-
Wavenet is introduced in [WaveNet: A Generative Model for Raw Audio](https://arxiv.org/abs/1609.03499) by DeepMind, first used for audio generation. The main components use the causal dilated convolutional neutral network. The kernel of CNN layer share the same weights, so it can also be used to percept the seasonality of time series issue.
4
+
Wavenet is introduced in [WaveNet: A Generative Model for Raw Audio](https://arxiv.org/abs/1609.03499) by DeepMind, first used in audio generation. Its main components use the causal dilated convolutional neutral network. The kernel of CNN layer share the same weights, so it can also be used to percept the seasonality of time series issue.
It's become popular in time series application since sjv open-sourced his repo [web-traffic-forecasting](https://github.com/sjvasquez/web-traffic-forecasting)
10
+
9
11
## Some detail
10
-
### casual dilated convolutional neutral network
12
+
####casual dilated convolutional neutral network
11
13
Casual: make sure that the future information won't leak
12
14
13
-
Normal convolution
14
-
15
15
Dilated: extend the receptive field to track the long term dependencies
0 commit comments