Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
SlideShare a Scribd company logo
A General Framework for
Enhancing Prediction
Performance on Time Series
Data
Chin-Hui Chen
陳晉暉
Prof. Pu-Jen Cheng
鄭卜壬教授
增進時序資料預測效能之一般化模型
1. Motivation
2. Related Works
3. Framework
4. Experiment
5. Conclusion
Agenda
Motivation
● Time series data is everywhere.
● For example:
○ Query Trend Data
○ Traffic Flow Data
Motivation
Google Trends: "typhoon". Japan, 2004 - 2013.
Google Trends: "typhoon". Japan, 2012.
Traffic Flow: ETC bridge, 2009 - 2011
Traffic Flow: ETC bridge, 2010
Predict Time Series Data
● Time series data: {Yi
} where i=1,...,t
(t = current timestamp)
Value Yi
is specific data property. E.g. Traffic
Flow, Query Frequency.
● Given {Yi
} and prediction horizon h, predict
the value of {Yj
} where j=t+1,...,t+h.
Predict Time Series Data
(cont'd)
● Many researches have been studying to
predict time series data. For example:
Neural Network based method, Regression
based method.
● These methods use past data {Yt-n
,..., Yt
} to
forecast future data {Yt+1
,..., Yt+h
}.
Predict
Method
Past Data
{Yt-n
,..., Yt
}
Future Data
{Yt+1
,...,
Yt+h
}
Predict Time Series Data
(cont'd)
● Short-term prediction
○ h=1
○ e.g. Predict {Yt+1
}.
● Long-term prediction
○ h>1
○ e.g. Predict {Yt+1
,..., Yt+13
}.
Traffic Flow Prediction (h=1)
Traffic Flow Prediction (h=13)
Intuitively...
● The nearer the dataset is, the more accurate
we predicts.
● The longer the prediction horizon is, the
more error occurs.
● The nearer...
the dataset is, the more accurate we predicts.
● Predict Method: Exponential Smoothing
● We apply Exponential Smoothing on Traffic
Flow Data.
● Traffic Flow Prediction
The longer...
the prediction horizon is, the more error occurs.
● Prediction Horizon = 10
However,
1. Trend
2. Periodicity
● If the predict method captures the trend or
periodicity of the time series data, then...
● Predict Method: Neural Network
○ Capture Periodicity
nearer NOT ALWAYS accurate
longer NOT ALWAYS error
A General Framework for Enhancing Prediction Performance on Time Series Data
Also
● Continuous & Dependent
a. Time Series Data is continuous. So the prediction
can be continuous.
b. The neighbor prediction results may cover each
other and improve each other. If we want to predict
at time t, it is possible to use result at t-1 or t-2 to
cover the result.
A General Framework for Enhancing Prediction Performance on Time Series Data
Traffic Flow Prediction (h=13)
Multiple Prediction
● Therefore, for each data point in time series,
it has been predicted h times.
● We will have "multiple prediction" in given
data point in time series.
Yt+2
Yt+3
Yt+
1
Yt+4
1st Prediction (farthest)
2nd Prediction
3rd Prediction
Deep Color -> Accurate
Yt+2
Yt+3
Yt+
1
Yt+4
10/40
12/40
18/40
● The most accurate result may not always
happen in the latest one.
● We propose a general enhancement
framework to utilize prediction results of
multiple prediction to improve the accuracy.
Related Works
Related Works
Time Series Predict Methods:
1. Machine Learning Based
a. Neural Network
2. Regression Based
a. ARIMA approach
b. Holt-Winters ES approach
Neural Network
NNet
The architecture of multilayer perceptron is as
follows:
● Notation: NNet(i, h)
● Input Layer: i neurons
● Single hidden layer: 4 neurons
● Output Layer: h neurons
○ The input neurons include {v(k), k = t−i+1, ..., t},
while the output neuron is {v(t+1)...v(t+h)}, where t
represents the current time.
● Tangent sigmoid function and linear
transfer function are used for activation
function.
● This model is trained using back-
propagation algorithm over the training
dataset.
ARIMA
ARIMA
● Stands for "Autoregressive integrated
moving average"
● The model comprises 3 parts.
○ differencing
○ autoregressive (AR)
○ moving average (MA)
● Seasonal
○ NS-ARIMA: Nonseasonal ARIMA
○ S-ARIMA: Seasonal ARIMA
Differencing: non-stationary -> stationary
● stationary:
○ A stationary time series is one whose statistical
properties such as mean, variance, autocorrelation,
etc. are all constant over time.
NS-ARIMA
● Notation: ARIMA (p, d, q)
○ d = the order of differencing
○ p = the order of autoregressive
○ q = the order of moving average
NS-ARIMA
ARIMA(p, d, q):
A General Framework for Enhancing Prediction Performance on Time Series Data
S-ARIMA
ARIMA(p, d, q)(P,D,Q)s
:
S-ARIMA
ARIMA(p, d, q)(P,D,Q)s
:
e.g.
ARIMA(1,0,1)(1,1,2)12
● In this work, S-ARIMA is adopted.
Holt-Winters ES
Holt-Winters ES
1. Stands for "Holt-Winters Exponential
Smoothing"
2.
Trend
ActualSmoothed
Periodicity
Framework
● To improve time series prediction, a general
enhancement framework is proposed.
● The framework utilizes multiple prediction
results and tries to learn the data
dependency to improve the accuracy.
Predict
Method
Multiple Prediction
Overview
Past Data
{Yt-n
,...,
Yt
}
STE (Short-
Term
Enhancement)
LTE-NR (Long-
Term
Enhancement
NRegression)
{NNet, ARIMA or HW-ES}
LTE-R (Long-
Term
Enhancement
Regression)
● Given a predict method, the multiple
prediction result can be generated. The
enhancement algorithms input these
information and learn from it.
● The multiple prediction result and the
corresponding labels are listed in the
following slide.
z13
z1
z2
z3
Yt+2
Yt+3
Yt+
1
X1
X2
Yt+4X3
1st Prediction (farthest)
2nd Prediction
3rd Prediction
STE (Short-Term
Enhancement)
● SVR (Support Vector Regression) is adopted.
● Target Value: Yt+1
● As the multiple prediction is done, it is
possible to have more accurate prediction
values among Z1 - Z13.
Feature Set
1. S1: Statistic
a. Trimmed Mean (t_mean)
b. Last N Prediction (last_n)
c. Gaussian Distribution Modeling (gaussian_dist)
2. S2: Reliability
a. Avg Min Error (avg_min_e)
b. Last Min Error (last_min_e)
c. Trend (trend)
3. Periodicity Feature
z13
z1
z2
z3
Yt+2
Yt+3
Yt+
1
X1
X2
Yt+4X3
1st Prediction (farthest)
2nd Prediction
3rd Prediction
S1 Statistic
1. Trimmed mean (t_mean)
It calculates the mean after discarding given
parts of a probability (P%) at high and low end.
Mean(Z1
,...,Zh
) trimmed with P = 10%.
2. Last N Prediction (last_n)
For the elements: Zh
, Zh-1
,..., Z1
, get the lastest
N predictions. N = 1 is applied. (E.g. Z13
)
3. Gaussian Distribution Modeling (gaussian_dist)
where μ = mean(Z1
,...,Zh
), σ = std(Z1
,...,Zh
)
Produce N values from the distribution. N =
1 is applied.
z12
z13
z1
z2
z3
Yt+2
Yt+3
Yt+
1
X1
X2
Yt+4X3
1st Prediction (farthest)
2nd Prediction
3rd Prediction
Vz1
Vz2
Vz3
Vz12
S2 Reliability
1. Avg Min Error (avg_min_e)
Ground Truth
Long-Term Predict
Long-Term Predict
1. Avg Min Error (avg_min_e)
VZk
: the vector of partial predicted results
GTZk
: the corresponding ground truth of VZk
Select Zk
with the min MAE1
(VZk
, GTZk
)
where k = 1,...,h-1
1
MAE = Mean Absolute Error
2. Last Min Error (last_min_e)
Ground Truth
Long-Term Predict
Long-Term Predict
2. Last Min Error (last_min_e)
Select Zk
with the min MAE( VZk
[1] , GTZk
[1] )
where k = 1,...,h-1
3. Trend (trend)
Ground Truth
Long-Term Predict
Long-Term Predict
3. Trend (trend)
difference: d(m)
(t) = d(m)
(t) - d(m)
(t-1)
Select Zk
with the max
cosine_sim( d(1)
(VZk
) , d(1)
(GTZk
) )
where k = 1,...,h-1 and |VZk
|>3
Periodicity Feature
● The previous period data represents certain
accurate confidence. Therefore, we consider
periodicity into feature set property.
● Periodicity detection: FFT(Fast Fourier
transform)
● Add periodicity enhancement to S1 and S2.
Period
z12
z13
z1
z2
z3
Yt+2
Yt+3
Yt+
1
X1
X2
Yt+4X3
Vz1
Vz2
Vz3
Vz12
z
P
Vzp
Feature Set w/ Periodicity
1. S1: Statistic w/ Periodicity
a. Trimmed mean (t_mean_wp)
b. Last N Prediction (last_n)
c. Gaussian Distribution Modeling
(gaussian_dist_wp)
2. S2: Reliability w/ Periodicity
a. Avg Min Error (avg_min_e_wp)
b. Last Min Error (last_min_e_wp)
c. Trend (trend_wp)
S1 Statistic w/ Periodicity
1. Trimmed mean (t_mean_wp)
It calculates the mean after discarding given
parts of a probability (P%) at high and low end.
Mean(Z1
,...,Zh
,Zp
) trimmed with P = 10%.
3. Gaussian Distribution Modeling
(gaussian_dist_wp)
where μ = mean(Z1
,...,Zh
,Zp
), σ = std(Z1
,...,Zh
,Zp
)
Produce N values from the distribution. N = 1 is
applied.
S2 Reliability w/ Periodicity
1. Avg Min Error (avg_min_e_wp)
VZk
: the vector of partial predicted results
GTZk
: the corresponding ground truth of VZk
Select Zk
with the min MAE(VZk
, GTZk
)
where k = 1,...,h-1,p
2. Last Min Error (last_min_e_wp)
Select Zk
with the min MAE( VZk
[1] , GTZk
[1] )
where k = 1,...,h-1,p
3. Trend (trend_wp)
difference: d(m)
(t) = d(m)
(t) - d(m)
(t-1)
Select Zk
with the max
cosine_sim( d(1)
(VZk
) , d(1)
(GTZk
) )
where k = 1,...,h-1,p and |VZk
|>3
Feature Set w/ Periodicity
1. S1: Statistic w/ Periodicity
a. Trimmed mean (t_mean_wp)
b. Last N Prediction (last_n)
c. Gaussian Distribution Modeling
(gaussian_dist_wp)
2. S2: Reliability w/ Periodicity
a. Avg Min Error (avg_min_e_wp)
b. Last Min Error (last_min_e_wp)
c. Trend (trend_wp)
z12
z13
z1
z2
z3
Yt+2
Yt+3
Yt+
1
X1
X2
Yt+4X3
Vz1
Vz2
Vz3
Vz12
z
P
Vzp
Predict
Method
Multiple Prediction
Overview
Past Data
{Yt-n
,...,
Yt
}
STE (Short-
Term
Enhancement)
LTE-NR (Long-
Term
Enhancement
NRegression)
{NNet, ARIMA or HW-ES}
LTE-R (Long-
Term
Enhancement
Regression)
LTE (Long-Term
Enhancement)
● LTE-R (Long-Term Enhancement
Regression)
● LTE-NR (Long-Term Enhancement
NRegression)
LTE-R (Long-Term
Enhancement Regression)
● After STE is done, the predicted result can be
used to improve Long-Term prediction.
● Given a predict method, the method takes
STE result as one of the input value and
make enhanced predictions.
●
...
LTE-NR (Long-Term
Enhancement NRegression)
● Train multiple SVRs to make N predictions.
Yt+2
Yt+3
Yt+
1
X1X2
Yt+4X3
Vz1
Vz2
Vz3
Vz12
Vzp
LTE-NR (Long-Term
Enhancement NRegression)
● These N predicted results can be passed into
the predict method to enhance the
prediction.
● LTE-R is the special case of LTE-NR when
N=1
● The behavior is illustrated.
...
LTE (Long-Term
Enhancement)
● LTE-R
● LTE-NR
...
...
Predict
Method
Multiple Prediction
Overview
Past Data
{Yt-n
,...,
Yt
}
STE (Short-
Term
Enhancement)
LTE-NR (Long-
Term
Enhancement
NRegression)
{NNet, ARIMA or HW-ES}
LTE-R (Long-
Term
Enhancement
Regression)
Experiment
Dataset
●
BRS:
ETC Data from Bridge
Roadside System in Oceania
Data Range Jan, 2009 - Dec, 2011 (3 yrs)
Time Interval Week (ISO Week Date)
Data Weekly Traffic Flow
● Traffic-Flow Theory
○ Traffic stream properties: speed(v), density(k), flow
(q).
○ Flow(q)*:
i. x1
: a specific detection point.(e.g., induction loop)
ii. m: the number of vehicles passing through x1
.
iii. T: a predefined time interval. (e.g., 1 month)
* Henry Lieu (January/February 1999). "Traffic-Flow Theory". Public Roads (US Dept of
Transportation) (Vol. 62· No. 4).
Induction Loop
Photo via http://auto.howstuffworks.com/car-driving-safety/safety-regulatory-devices/red-light-
camera1.htm
A General Framework for Enhancing Prediction Performance on Time Series Data
A General Framework for Enhancing Prediction Performance on Time Series Data
Observation
1. Periodicity observed.
2. Spring and summer: Dissimilar, shifting.
3. Fall: Regular.
4. Winter: Small disturbance.
Experiment Setting
● Training Data: 2009, 2010 (104 weeks)
● Testing Data: 2011 (52 weeks)
● Prediction horizon:
○ Short-Term: h=1
○ Long-Term: h=13 (3 months)
● Evaluate: RMSD/RMSE (stands for Root-
Mean-Square Deviation/Error )
Model Parameters
● NNet:
○ 5-fold CV.
○ input neurons: 52
○ output neurons: h
● ARIMA:
○ d, p, q trained by Box-Jenkins approach
○ s = 52
● HW-ES:
○ τ = 52
● SVR:
○ 5-fold CV.
○ grid search: gamma(γ)= 2^(-3:3), cost(C)= 2^(-1:6)
STE
● Baseline: NNet, ARIMA, HW-ES
NNet ARIMA HW-ES
BL 29508.35 25121.31 16438.36
S1 29096.10 (+1.40%) 27843.35* (-10.84%) 16246.83 (+1.17%)
S1_wp 24824.02** (+15.87%) 21524.15** (+14.32%) 16333.37 (+0.64%)
S2 27661.48* (+6.25%) 26718.26* (-6.36%) 15624.02* (+4.95%)
S2_wp 25178.40* (+14.67%) 21862.60* (+12.97%) 14882.54* (+9.46%)
S1+S2 28050.20* (+5.94%) 25552.13 (-1.71%) 15924.13* (+3.13%)
Total 23593.48** (+20.04%) 21182.93* (+15.68%) 15592.74* (+5.14%)
STE: BRS
T-test with p < 0.01 (**) and p< 0.05 (*) against baseline method
● NNet got the best improvement.
○ NNet (+20.04%) v.s. HW-ES (+5.14%)
● HW-ES is more accurate.
○ HW-ES (16438.36 -> 15592.74)
○ NNet (29508.35 -> 23593.48)
● Periodicity feature has great improvement.
○ NNet ( +5.94% -> +20.04% )
○ ARIMA ( -1.71% -> +15.68% )
Feature Analysis
● To better understand the effectiveness of
features, we analyze the correlation between
RMSE and specific feature value. (RMSE v.s.
Feature)
● Three standard measurements including
Pearson’s product-moment, Kendall’s tau
and Spearman’s rho are considered.
● The absolute values of measurements are
depicted below.
NNet h=13
● Periodicity feature overall gets better
correlation.
● Without Periodicity
○ gaussian_dist
○ last_min_error
● With Periodicity
○ last_min_error_wp
○ trend_wp
LTE-R (h=13)
NNet ARIMA HW-ES
BL 24321.10 20648.60 25934.51
LTE-R 23401.23*
(+3.78%)
20562.28
(+0.41%)
23636.87*
(+8.86%)
T-test with p < 0.01 (**) and p< 0.05 (*) against baseline method
LTE-NR (h=13)
N=1 N=2 N=3 N=4 N=5
NNet +3.78% +1.56%
(-58%)
+5.26%
(+39%)
+0.91%
(-76%)
-0.87%
(-123%)
ARIMA +0.41% +1.21%
(+195%)
+0.92%
(+120%)
+0.12%
(-70%)
+0.13%
(-68%)
HW-ES +8.86% +9.13%
(+3%)
+9.59%
(+7.6%)
+8.45%
(-4.6%)
+3.14%
(-65%)
● In LTE-R, ARIMA has the best prediction.
But HW-ES improves the most.
● In LTE-NR, we can observe that when N=3
(NNet, HW-ES)or N=2(ARIMA) , the prediction
is improved greatly.
Conclusion
● We design a general framework for
enhancing prediction performance where the
predict method can capture trend or
periodicity property.
● We adopted Read-World traffic data. With
the great improvement,
○ City's competitiveness planning
○ Improves the budget and forecast estimation
○ Improve maintenance planning to optimize the
maintenance spending

More Related Content

What's hot

QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
The Statistical and Applied Mathematical Sciences Institute
 
CLIM Fall 2017 Course: Statistics for Climate Research, Guest lecture: Data F...
CLIM Fall 2017 Course: Statistics for Climate Research, Guest lecture: Data F...CLIM Fall 2017 Course: Statistics for Climate Research, Guest lecture: Data F...
CLIM Fall 2017 Course: Statistics for Climate Research, Guest lecture: Data F...
The Statistical and Applied Mathematical Sciences Institute
 
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
The Statistical and Applied Mathematical Sciences Institute
 
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
The Statistical and Applied Mathematical Sciences Institute
 
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
The Statistical and Applied Mathematical Sciences Institute
 
MUMS Opening Workshop - Model Uncertainty in Data Fusion for Remote Sensing -...
MUMS Opening Workshop - Model Uncertainty in Data Fusion for Remote Sensing -...MUMS Opening Workshop - Model Uncertainty in Data Fusion for Remote Sensing -...
MUMS Opening Workshop - Model Uncertainty in Data Fusion for Remote Sensing -...
The Statistical and Applied Mathematical Sciences Institute
 
CLIM Fall 2017 Course: Statistics for Climate Research, Geostats for Large Da...
CLIM Fall 2017 Course: Statistics for Climate Research, Geostats for Large Da...CLIM Fall 2017 Course: Statistics for Climate Research, Geostats for Large Da...
CLIM Fall 2017 Course: Statistics for Climate Research, Geostats for Large Da...
The Statistical and Applied Mathematical Sciences Institute
 
CLIM Program: Remote Sensing Workshop, Optimization for Distributed Data Syst...
CLIM Program: Remote Sensing Workshop, Optimization for Distributed Data Syst...CLIM Program: Remote Sensing Workshop, Optimization for Distributed Data Syst...
CLIM Program: Remote Sensing Workshop, Optimization for Distributed Data Syst...
The Statistical and Applied Mathematical Sciences Institute
 
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
The Statistical and Applied Mathematical Sciences Institute
 
CLIM Fall 2017 Course: Statistics for Climate Research, Detection & Attributi...
CLIM Fall 2017 Course: Statistics for Climate Research, Detection & Attributi...CLIM Fall 2017 Course: Statistics for Climate Research, Detection & Attributi...
CLIM Fall 2017 Course: Statistics for Climate Research, Detection & Attributi...
The Statistical and Applied Mathematical Sciences Institute
 
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
The Statistical and Applied Mathematical Sciences Institute
 
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
The Statistical and Applied Mathematical Sciences Institute
 
Digital Signal Processing[ECEG-3171]-Ch1_L04
Digital Signal Processing[ECEG-3171]-Ch1_L04Digital Signal Processing[ECEG-3171]-Ch1_L04
Digital Signal Processing[ECEG-3171]-Ch1_L04
Rediet Moges
 
Continuous control with deep reinforcement learning (DDPG)
Continuous control with deep reinforcement learning (DDPG)Continuous control with deep reinforcement learning (DDPG)
Continuous control with deep reinforcement learning (DDPG)
Taehoon Kim
 
Smart Multitask Bregman Clustering
Smart Multitask Bregman ClusteringSmart Multitask Bregman Clustering
Smart Multitask Bregman Clustering
Venkat Sai Sharath Mudhigonda
 
Dueling network architectures for deep reinforcement learning
Dueling network architectures for deep reinforcement learningDueling network architectures for deep reinforcement learning
Dueling network architectures for deep reinforcement learning
Taehoon Kim
 
Delayed acceptance for Metropolis-Hastings algorithms
Delayed acceptance for Metropolis-Hastings algorithmsDelayed acceptance for Metropolis-Hastings algorithms
Delayed acceptance for Metropolis-Hastings algorithms
Christian Robert
 
Adaptive dynamic programming algorithm for uncertain nonlinear switched systems
Adaptive dynamic programming algorithm for uncertain nonlinear switched systemsAdaptive dynamic programming algorithm for uncertain nonlinear switched systems
Adaptive dynamic programming algorithm for uncertain nonlinear switched systems
International Journal of Power Electronics and Drive Systems
 
Gradient descent optimizer
Gradient descent optimizerGradient descent optimizer
Gradient descent optimizer
Hojin Yang
 
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
The Statistical and Applied Mathematical Sciences Institute
 

What's hot (20)

QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
 
CLIM Fall 2017 Course: Statistics for Climate Research, Guest lecture: Data F...
CLIM Fall 2017 Course: Statistics for Climate Research, Guest lecture: Data F...CLIM Fall 2017 Course: Statistics for Climate Research, Guest lecture: Data F...
CLIM Fall 2017 Course: Statistics for Climate Research, Guest lecture: Data F...
 
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
 
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
 
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
 
MUMS Opening Workshop - Model Uncertainty in Data Fusion for Remote Sensing -...
MUMS Opening Workshop - Model Uncertainty in Data Fusion for Remote Sensing -...MUMS Opening Workshop - Model Uncertainty in Data Fusion for Remote Sensing -...
MUMS Opening Workshop - Model Uncertainty in Data Fusion for Remote Sensing -...
 
CLIM Fall 2017 Course: Statistics for Climate Research, Geostats for Large Da...
CLIM Fall 2017 Course: Statistics for Climate Research, Geostats for Large Da...CLIM Fall 2017 Course: Statistics for Climate Research, Geostats for Large Da...
CLIM Fall 2017 Course: Statistics for Climate Research, Geostats for Large Da...
 
CLIM Program: Remote Sensing Workshop, Optimization for Distributed Data Syst...
CLIM Program: Remote Sensing Workshop, Optimization for Distributed Data Syst...CLIM Program: Remote Sensing Workshop, Optimization for Distributed Data Syst...
CLIM Program: Remote Sensing Workshop, Optimization for Distributed Data Syst...
 
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
 
CLIM Fall 2017 Course: Statistics for Climate Research, Detection & Attributi...
CLIM Fall 2017 Course: Statistics for Climate Research, Detection & Attributi...CLIM Fall 2017 Course: Statistics for Climate Research, Detection & Attributi...
CLIM Fall 2017 Course: Statistics for Climate Research, Detection & Attributi...
 
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
 
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
 
Digital Signal Processing[ECEG-3171]-Ch1_L04
Digital Signal Processing[ECEG-3171]-Ch1_L04Digital Signal Processing[ECEG-3171]-Ch1_L04
Digital Signal Processing[ECEG-3171]-Ch1_L04
 
Continuous control with deep reinforcement learning (DDPG)
Continuous control with deep reinforcement learning (DDPG)Continuous control with deep reinforcement learning (DDPG)
Continuous control with deep reinforcement learning (DDPG)
 
Smart Multitask Bregman Clustering
Smart Multitask Bregman ClusteringSmart Multitask Bregman Clustering
Smart Multitask Bregman Clustering
 
Dueling network architectures for deep reinforcement learning
Dueling network architectures for deep reinforcement learningDueling network architectures for deep reinforcement learning
Dueling network architectures for deep reinforcement learning
 
Delayed acceptance for Metropolis-Hastings algorithms
Delayed acceptance for Metropolis-Hastings algorithmsDelayed acceptance for Metropolis-Hastings algorithms
Delayed acceptance for Metropolis-Hastings algorithms
 
Adaptive dynamic programming algorithm for uncertain nonlinear switched systems
Adaptive dynamic programming algorithm for uncertain nonlinear switched systemsAdaptive dynamic programming algorithm for uncertain nonlinear switched systems
Adaptive dynamic programming algorithm for uncertain nonlinear switched systems
 
Gradient descent optimizer
Gradient descent optimizerGradient descent optimizer
Gradient descent optimizer
 
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
QMC Program: Trends and Advances in Monte Carlo Sampling Algorithms Workshop,...
 

Viewers also liked

BIM_2010_20_Bioinformatics_Project
BIM_2010_20_Bioinformatics_ProjectBIM_2010_20_Bioinformatics_Project
BIM_2010_20_Bioinformatics_Project
Sagar Nikam
 
Relat%c3%b3rio%20 final%20fgv%20sp
Relat%c3%b3rio%20 final%20fgv%20spRelat%c3%b3rio%20 final%20fgv%20sp
Relat%c3%b3rio%20 final%20fgv%20sp
arnaldoromera
 
Machine Learning Strategies for Time Series Prediction
Machine Learning Strategies for Time Series PredictionMachine Learning Strategies for Time Series Prediction
Machine Learning Strategies for Time Series Prediction
Gianluca Bontempi
 
A Monte Carlo strategy for structure multiple-step-head time series prediction
A Monte Carlo strategy for structure multiple-step-head time series predictionA Monte Carlo strategy for structure multiple-step-head time series prediction
A Monte Carlo strategy for structure multiple-step-head time series prediction
Gianluca Bontempi
 
Computational Intelligence for Time Series Prediction
Computational Intelligence for Time Series PredictionComputational Intelligence for Time Series Prediction
Computational Intelligence for Time Series Prediction
Gianluca Bontempi
 
1634 time series and trend analysis
1634 time series and trend analysis1634 time series and trend analysis
1634 time series and trend analysis
Dr Fereidoun Dejahang
 
Forecasting Techniques - Data Science SG
Forecasting Techniques - Data Science SG Forecasting Techniques - Data Science SG
Forecasting Techniques - Data Science SG
Kai Xin Thia
 
Automatic algorithms for time series forecasting
Automatic algorithms for time series forecastingAutomatic algorithms for time series forecasting
Automatic algorithms for time series forecasting
Rob Hyndman
 
Mba 532 2011_part_3_time_series_analysis
Mba 532 2011_part_3_time_series_analysisMba 532 2011_part_3_time_series_analysis
Mba 532 2011_part_3_time_series_analysis
Chandra Kodituwakku
 
Extending and integrating a hybrid knowledge representation system into the c...
Extending and integrating a hybrid knowledge representation system into the c...Extending and integrating a hybrid knowledge representation system into the c...
Extending and integrating a hybrid knowledge representation system into the c...
Valentina Rho
 
Xavier Conort, DataScience SG Meetup - Challenges in insurance pricing
Xavier Conort, DataScience SG Meetup - Challenges in insurance pricingXavier Conort, DataScience SG Meetup - Challenges in insurance pricing
Xavier Conort, DataScience SG Meetup - Challenges in insurance pricing
Kai Xin Thia
 
Specialty packaging corporation, part a
Specialty packaging corporation, part aSpecialty packaging corporation, part a
Specialty packaging corporation, part a
aliyudhi_h
 
[系列活動] Data exploration with modern R
[系列活動] Data exploration with modern R[系列活動] Data exploration with modern R
[系列活動] Data exploration with modern R
台灣資料科學年會
 
How to win data science competitions with Deep Learning
How to win data science competitions with Deep LearningHow to win data science competitions with Deep Learning
How to win data science competitions with Deep Learning
Sri Ambati
 
[系列活動] 資料探勘速遊 - Session4 case-studies
[系列活動] 資料探勘速遊 - Session4 case-studies[系列活動] 資料探勘速遊 - Session4 case-studies
[系列活動] 資料探勘速遊 - Session4 case-studies
台灣資料科學年會
 
[DSC 2016] 系列活動:李祈均 / 人類行為大數據分析
[DSC 2016] 系列活動:李祈均 / 人類行為大數據分析[DSC 2016] 系列活動:李祈均 / 人類行為大數據分析
[DSC 2016] 系列活動:李祈均 / 人類行為大數據分析
台灣資料科學年會
 
[系列活動] 給工程師的統計學及資料分析 123
[系列活動] 給工程師的統計學及資料分析 123[系列活動] 給工程師的統計學及資料分析 123
[系列活動] 給工程師的統計學及資料分析 123
台灣資料科學年會
 
Transform your Business with AI, Deep Learning and Machine Learning
Transform your Business with AI, Deep Learning and Machine LearningTransform your Business with AI, Deep Learning and Machine Learning
Transform your Business with AI, Deep Learning and Machine Learning
Sri Ambati
 
[系列活動] Machine Learning 機器學習課程
[系列活動] Machine Learning 機器學習課程[系列活動] Machine Learning 機器學習課程
[系列活動] Machine Learning 機器學習課程
台灣資料科學年會
 
Deep Learning Computer Build
Deep Learning Computer BuildDeep Learning Computer Build
Deep Learning Computer Build
PetteriTeikariPhD
 

Viewers also liked (20)

BIM_2010_20_Bioinformatics_Project
BIM_2010_20_Bioinformatics_ProjectBIM_2010_20_Bioinformatics_Project
BIM_2010_20_Bioinformatics_Project
 
Relat%c3%b3rio%20 final%20fgv%20sp
Relat%c3%b3rio%20 final%20fgv%20spRelat%c3%b3rio%20 final%20fgv%20sp
Relat%c3%b3rio%20 final%20fgv%20sp
 
Machine Learning Strategies for Time Series Prediction
Machine Learning Strategies for Time Series PredictionMachine Learning Strategies for Time Series Prediction
Machine Learning Strategies for Time Series Prediction
 
A Monte Carlo strategy for structure multiple-step-head time series prediction
A Monte Carlo strategy for structure multiple-step-head time series predictionA Monte Carlo strategy for structure multiple-step-head time series prediction
A Monte Carlo strategy for structure multiple-step-head time series prediction
 
Computational Intelligence for Time Series Prediction
Computational Intelligence for Time Series PredictionComputational Intelligence for Time Series Prediction
Computational Intelligence for Time Series Prediction
 
1634 time series and trend analysis
1634 time series and trend analysis1634 time series and trend analysis
1634 time series and trend analysis
 
Forecasting Techniques - Data Science SG
Forecasting Techniques - Data Science SG Forecasting Techniques - Data Science SG
Forecasting Techniques - Data Science SG
 
Automatic algorithms for time series forecasting
Automatic algorithms for time series forecastingAutomatic algorithms for time series forecasting
Automatic algorithms for time series forecasting
 
Mba 532 2011_part_3_time_series_analysis
Mba 532 2011_part_3_time_series_analysisMba 532 2011_part_3_time_series_analysis
Mba 532 2011_part_3_time_series_analysis
 
Extending and integrating a hybrid knowledge representation system into the c...
Extending and integrating a hybrid knowledge representation system into the c...Extending and integrating a hybrid knowledge representation system into the c...
Extending and integrating a hybrid knowledge representation system into the c...
 
Xavier Conort, DataScience SG Meetup - Challenges in insurance pricing
Xavier Conort, DataScience SG Meetup - Challenges in insurance pricingXavier Conort, DataScience SG Meetup - Challenges in insurance pricing
Xavier Conort, DataScience SG Meetup - Challenges in insurance pricing
 
Specialty packaging corporation, part a
Specialty packaging corporation, part aSpecialty packaging corporation, part a
Specialty packaging corporation, part a
 
[系列活動] Data exploration with modern R
[系列活動] Data exploration with modern R[系列活動] Data exploration with modern R
[系列活動] Data exploration with modern R
 
How to win data science competitions with Deep Learning
How to win data science competitions with Deep LearningHow to win data science competitions with Deep Learning
How to win data science competitions with Deep Learning
 
[系列活動] 資料探勘速遊 - Session4 case-studies
[系列活動] 資料探勘速遊 - Session4 case-studies[系列活動] 資料探勘速遊 - Session4 case-studies
[系列活動] 資料探勘速遊 - Session4 case-studies
 
[DSC 2016] 系列活動:李祈均 / 人類行為大數據分析
[DSC 2016] 系列活動:李祈均 / 人類行為大數據分析[DSC 2016] 系列活動:李祈均 / 人類行為大數據分析
[DSC 2016] 系列活動:李祈均 / 人類行為大數據分析
 
[系列活動] 給工程師的統計學及資料分析 123
[系列活動] 給工程師的統計學及資料分析 123[系列活動] 給工程師的統計學及資料分析 123
[系列活動] 給工程師的統計學及資料分析 123
 
Transform your Business with AI, Deep Learning and Machine Learning
Transform your Business with AI, Deep Learning and Machine LearningTransform your Business with AI, Deep Learning and Machine Learning
Transform your Business with AI, Deep Learning and Machine Learning
 
[系列活動] Machine Learning 機器學習課程
[系列活動] Machine Learning 機器學習課程[系列活動] Machine Learning 機器學習課程
[系列活動] Machine Learning 機器學習課程
 
Deep Learning Computer Build
Deep Learning Computer BuildDeep Learning Computer Build
Deep Learning Computer Build
 

Similar to A General Framework for Enhancing Prediction Performance on Time Series Data

Introducing Zap Q-Learning
Introducing Zap Q-Learning   Introducing Zap Q-Learning
Introducing Zap Q-Learning
Sean Meyn
 
KZ Spatial Waves Separations
KZ Spatial Waves SeparationsKZ Spatial Waves Separations
KZ Spatial Waves Separations
QUESTJOURNAL
 
Graph Analytics and Complexity Questions and answers
Graph Analytics and Complexity Questions and answersGraph Analytics and Complexity Questions and answers
Graph Analytics and Complexity Questions and answers
Animesh Chaturvedi
 
Distributed solution of stochastic optimal control problem on GPUs
Distributed solution of stochastic optimal control problem on GPUsDistributed solution of stochastic optimal control problem on GPUs
Distributed solution of stochastic optimal control problem on GPUs
Pantelis Sopasakis
 
Numerical Methods
Numerical MethodsNumerical Methods
Numerical Methods
Teja Ande
 
Climate Extremes Workshop - Extreme Values of Vertical Wind Speed in Doppler ...
Climate Extremes Workshop - Extreme Values of Vertical Wind Speed in Doppler ...Climate Extremes Workshop - Extreme Values of Vertical Wind Speed in Doppler ...
Climate Extremes Workshop - Extreme Values of Vertical Wind Speed in Doppler ...
The Statistical and Applied Mathematical Sciences Institute
 
ICLR 2018
ICLR 2018ICLR 2018
Mx/G(a,b)/1 With Modified Vacation, Variant Arrival Rate With Restricted Admi...
Mx/G(a,b)/1 With Modified Vacation, Variant Arrival Rate With Restricted Admi...Mx/G(a,b)/1 With Modified Vacation, Variant Arrival Rate With Restricted Admi...
Mx/G(a,b)/1 With Modified Vacation, Variant Arrival Rate With Restricted Admi...
IJRES Journal
 
Strategies for Sensor Data Aggregation in Support of Emergency Response
Strategies for Sensor Data Aggregation in Support of Emergency ResponseStrategies for Sensor Data Aggregation in Support of Emergency Response
Strategies for Sensor Data Aggregation in Support of Emergency Response
Michele Weigle
 
A non-stiff numerical method for 3D interfacial flow of inviscid fluids.
A non-stiff numerical method for 3D interfacial flow of inviscid fluids.A non-stiff numerical method for 3D interfacial flow of inviscid fluids.
A non-stiff numerical method for 3D interfacial flow of inviscid fluids.
Alex (Oleksiy) Varfolomiyev
 
RNN and sequence-to-sequence processing
RNN and sequence-to-sequence processingRNN and sequence-to-sequence processing
RNN and sequence-to-sequence processing
Dongang (Sean) Wang
 
Continuous and Discrete-Time Analysis of SGD
Continuous and Discrete-Time Analysis of SGDContinuous and Discrete-Time Analysis of SGD
Continuous and Discrete-Time Analysis of SGD
Valentin De Bortoli
 
Technical
TechnicalTechnical
Technical
Uttam M Shrestha
 
Random vibrations
Random vibrationsRandom vibrations
Random vibrations
Koteswara Rao Unnam
 
Master_Thesis_Harihara_Subramanyam_Sreenivasan
Master_Thesis_Harihara_Subramanyam_SreenivasanMaster_Thesis_Harihara_Subramanyam_Sreenivasan
Master_Thesis_Harihara_Subramanyam_Sreenivasan
Harihara Subramanyam Sreenivasan
 
Time series Modelling Basics
Time series Modelling BasicsTime series Modelling Basics
Time series Modelling Basics
Ashutosh Kumar
 
Time series analysis, modeling and applications
Time series analysis, modeling and applicationsTime series analysis, modeling and applications
Time series analysis, modeling and applications
Springer
 
KAUST_talk_short.pdf
KAUST_talk_short.pdfKAUST_talk_short.pdf
KAUST_talk_short.pdf
Chiheb Ben Hammouda
 
Tensor train to solve stochastic PDEs
Tensor train to solve stochastic PDEsTensor train to solve stochastic PDEs
Tensor train to solve stochastic PDEs
Alexander Litvinenko
 
The Sample Average Approximation Method for Stochastic Programs with Integer ...
The Sample Average Approximation Method for Stochastic Programs with Integer ...The Sample Average Approximation Method for Stochastic Programs with Integer ...
The Sample Average Approximation Method for Stochastic Programs with Integer ...
SSA KPI
 

Similar to A General Framework for Enhancing Prediction Performance on Time Series Data (20)

Introducing Zap Q-Learning
Introducing Zap Q-Learning   Introducing Zap Q-Learning
Introducing Zap Q-Learning
 
KZ Spatial Waves Separations
KZ Spatial Waves SeparationsKZ Spatial Waves Separations
KZ Spatial Waves Separations
 
Graph Analytics and Complexity Questions and answers
Graph Analytics and Complexity Questions and answersGraph Analytics and Complexity Questions and answers
Graph Analytics and Complexity Questions and answers
 
Distributed solution of stochastic optimal control problem on GPUs
Distributed solution of stochastic optimal control problem on GPUsDistributed solution of stochastic optimal control problem on GPUs
Distributed solution of stochastic optimal control problem on GPUs
 
Numerical Methods
Numerical MethodsNumerical Methods
Numerical Methods
 
Climate Extremes Workshop - Extreme Values of Vertical Wind Speed in Doppler ...
Climate Extremes Workshop - Extreme Values of Vertical Wind Speed in Doppler ...Climate Extremes Workshop - Extreme Values of Vertical Wind Speed in Doppler ...
Climate Extremes Workshop - Extreme Values of Vertical Wind Speed in Doppler ...
 
ICLR 2018
ICLR 2018ICLR 2018
ICLR 2018
 
Mx/G(a,b)/1 With Modified Vacation, Variant Arrival Rate With Restricted Admi...
Mx/G(a,b)/1 With Modified Vacation, Variant Arrival Rate With Restricted Admi...Mx/G(a,b)/1 With Modified Vacation, Variant Arrival Rate With Restricted Admi...
Mx/G(a,b)/1 With Modified Vacation, Variant Arrival Rate With Restricted Admi...
 
Strategies for Sensor Data Aggregation in Support of Emergency Response
Strategies for Sensor Data Aggregation in Support of Emergency ResponseStrategies for Sensor Data Aggregation in Support of Emergency Response
Strategies for Sensor Data Aggregation in Support of Emergency Response
 
A non-stiff numerical method for 3D interfacial flow of inviscid fluids.
A non-stiff numerical method for 3D interfacial flow of inviscid fluids.A non-stiff numerical method for 3D interfacial flow of inviscid fluids.
A non-stiff numerical method for 3D interfacial flow of inviscid fluids.
 
RNN and sequence-to-sequence processing
RNN and sequence-to-sequence processingRNN and sequence-to-sequence processing
RNN and sequence-to-sequence processing
 
Continuous and Discrete-Time Analysis of SGD
Continuous and Discrete-Time Analysis of SGDContinuous and Discrete-Time Analysis of SGD
Continuous and Discrete-Time Analysis of SGD
 
Technical
TechnicalTechnical
Technical
 
Random vibrations
Random vibrationsRandom vibrations
Random vibrations
 
Master_Thesis_Harihara_Subramanyam_Sreenivasan
Master_Thesis_Harihara_Subramanyam_SreenivasanMaster_Thesis_Harihara_Subramanyam_Sreenivasan
Master_Thesis_Harihara_Subramanyam_Sreenivasan
 
Time series Modelling Basics
Time series Modelling BasicsTime series Modelling Basics
Time series Modelling Basics
 
Time series analysis, modeling and applications
Time series analysis, modeling and applicationsTime series analysis, modeling and applications
Time series analysis, modeling and applications
 
KAUST_talk_short.pdf
KAUST_talk_short.pdfKAUST_talk_short.pdf
KAUST_talk_short.pdf
 
Tensor train to solve stochastic PDEs
Tensor train to solve stochastic PDEsTensor train to solve stochastic PDEs
Tensor train to solve stochastic PDEs
 
The Sample Average Approximation Method for Stochastic Programs with Integer ...
The Sample Average Approximation Method for Stochastic Programs with Integer ...The Sample Average Approximation Method for Stochastic Programs with Integer ...
The Sample Average Approximation Method for Stochastic Programs with Integer ...
 

More from HopeBay Technologies, Inc.

COSCUP NAS也可以揀土豆
COSCUP NAS也可以揀土豆COSCUP NAS也可以揀土豆
COSCUP NAS也可以揀土豆
HopeBay Technologies, Inc.
 
What is twitter a social network or news media?
What is twitter a social network or news media?What is twitter a social network or news media?
What is twitter a social network or news media?
HopeBay Technologies, Inc.
 
Emerging topic detection on twitter based on temporal and social terms evalua...
Emerging topic detection on twitter based on temporal and social terms evalua...Emerging topic detection on twitter based on temporal and social terms evalua...
Emerging topic detection on twitter based on temporal and social terms evalua...
HopeBay Technologies, Inc.
 
Time is of the Essence : Improving Recency Ranking Using Twitter Data
Time is of the Essence : Improving Recency Ranking Using Twitter DataTime is of the Essence : Improving Recency Ranking Using Twitter Data
Time is of the Essence : Improving Recency Ranking Using Twitter Data
HopeBay Technologies, Inc.
 
Mining interesting locations and travel sequences from gps trajectories
Mining interesting locations and travel sequences from gps trajectoriesMining interesting locations and travel sequences from gps trajectories
Mining interesting locations and travel sequences from gps trajectories
HopeBay Technologies, Inc.
 
PCA (Principal component analysis) Theory and Toolkits
PCA (Principal component analysis) Theory and ToolkitsPCA (Principal component analysis) Theory and Toolkits
PCA (Principal component analysis) Theory and Toolkits
HopeBay Technologies, Inc.
 
Deep Learning in a nutshell
Deep Learning in a nutshellDeep Learning in a nutshell
Deep Learning in a nutshell
HopeBay Technologies, Inc.
 

More from HopeBay Technologies, Inc. (7)

COSCUP NAS也可以揀土豆
COSCUP NAS也可以揀土豆COSCUP NAS也可以揀土豆
COSCUP NAS也可以揀土豆
 
What is twitter a social network or news media?
What is twitter a social network or news media?What is twitter a social network or news media?
What is twitter a social network or news media?
 
Emerging topic detection on twitter based on temporal and social terms evalua...
Emerging topic detection on twitter based on temporal and social terms evalua...Emerging topic detection on twitter based on temporal and social terms evalua...
Emerging topic detection on twitter based on temporal and social terms evalua...
 
Time is of the Essence : Improving Recency Ranking Using Twitter Data
Time is of the Essence : Improving Recency Ranking Using Twitter DataTime is of the Essence : Improving Recency Ranking Using Twitter Data
Time is of the Essence : Improving Recency Ranking Using Twitter Data
 
Mining interesting locations and travel sequences from gps trajectories
Mining interesting locations and travel sequences from gps trajectoriesMining interesting locations and travel sequences from gps trajectories
Mining interesting locations and travel sequences from gps trajectories
 
PCA (Principal component analysis) Theory and Toolkits
PCA (Principal component analysis) Theory and ToolkitsPCA (Principal component analysis) Theory and Toolkits
PCA (Principal component analysis) Theory and Toolkits
 
Deep Learning in a nutshell
Deep Learning in a nutshellDeep Learning in a nutshell
Deep Learning in a nutshell
 

Recently uploaded

Artificial Intelligence (AI), Robotics and Computational fluid dynamics
Artificial Intelligence (AI), Robotics and Computational fluid dynamicsArtificial Intelligence (AI), Robotics and Computational fluid dynamics
Artificial Intelligence (AI), Robotics and Computational fluid dynamics
Chintan Kalsariya
 
this resume for sadika shaikh bca student
this resume for sadika shaikh bca studentthis resume for sadika shaikh bca student
this resume for sadika shaikh bca student
SadikaShaikh7
 
Lessons Of Binary Analysis - Christien Rioux
Lessons Of Binary Analysis - Christien RiouxLessons Of Binary Analysis - Christien Rioux
Lessons Of Binary Analysis - Christien Rioux
crioux1
 
Verti - EMEA Insurer Innovation Award 2024
Verti - EMEA Insurer Innovation Award 2024Verti - EMEA Insurer Innovation Award 2024
Verti - EMEA Insurer Innovation Award 2024
The Digital Insurer
 
Quantum Communications Q&A with Gemini LLM
Quantum Communications Q&A with Gemini LLMQuantum Communications Q&A with Gemini LLM
Quantum Communications Q&A with Gemini LLM
Vijayananda Mohire
 
Knowledge and Prompt Engineering Part 2 Focus on Prompt Design Approaches
Knowledge and Prompt Engineering Part 2 Focus on Prompt Design ApproachesKnowledge and Prompt Engineering Part 2 Focus on Prompt Design Approaches
Knowledge and Prompt Engineering Part 2 Focus on Prompt Design Approaches
Earley Information Science
 
STKI Israeli Market Study 2024 final v1
STKI Israeli Market Study 2024 final  v1STKI Israeli Market Study 2024 final  v1
STKI Israeli Market Study 2024 final v1
Dr. Jimmy Schwarzkopf
 
Details of description part II: Describing images in practice - Tech Forum 2024
Details of description part II: Describing images in practice - Tech Forum 2024Details of description part II: Describing images in practice - Tech Forum 2024
Details of description part II: Describing images in practice - Tech Forum 2024
BookNet Canada
 
What’s New in Teams Calling, Meetings and Devices May 2024
What’s New in Teams Calling, Meetings and Devices May 2024What’s New in Teams Calling, Meetings and Devices May 2024
What’s New in Teams Calling, Meetings and Devices May 2024
Stephanie Beckett
 
AI_dev Europe 2024 - From OpenAI to Opensource AI
AI_dev Europe 2024 - From OpenAI to Opensource AIAI_dev Europe 2024 - From OpenAI to Opensource AI
AI_dev Europe 2024 - From OpenAI to Opensource AI
Raphaël Semeteys
 
Research Directions for Cross Reality Interfaces
Research Directions for Cross Reality InterfacesResearch Directions for Cross Reality Interfaces
Research Directions for Cross Reality Interfaces
Mark Billinghurst
 
Dev Dives: Mining your data with AI-powered Continuous Discovery
Dev Dives: Mining your data with AI-powered Continuous DiscoveryDev Dives: Mining your data with AI-powered Continuous Discovery
Dev Dives: Mining your data with AI-powered Continuous Discovery
UiPathCommunity
 
Blockchain and Cyber Defense Strategies in new genre times
Blockchain and Cyber Defense Strategies in new genre timesBlockchain and Cyber Defense Strategies in new genre times
Blockchain and Cyber Defense Strategies in new genre times
anupriti
 
DealBook of Ukraine: 2024 edition
DealBook of Ukraine: 2024 editionDealBook of Ukraine: 2024 edition
DealBook of Ukraine: 2024 edition
Yevgen Sysoyev
 
Implementations of Fused Deposition Modeling in real world
Implementations of Fused Deposition Modeling  in real worldImplementations of Fused Deposition Modeling  in real world
Implementations of Fused Deposition Modeling in real world
Emerging Tech
 
Quality Patents: Patents That Stand the Test of Time
Quality Patents: Patents That Stand the Test of TimeQuality Patents: Patents That Stand the Test of Time
Quality Patents: Patents That Stand the Test of Time
Aurora Consulting
 
Pigging Solutions Sustainability brochure.pdf
Pigging Solutions Sustainability brochure.pdfPigging Solutions Sustainability brochure.pdf
Pigging Solutions Sustainability brochure.pdf
Pigging Solutions
 
Observability For You and Me with OpenTelemetry
Observability For You and Me with OpenTelemetryObservability For You and Me with OpenTelemetry
Observability For You and Me with OpenTelemetry
Eric D. Schabell
 
UiPath Community Day Kraków: Devs4Devs Conference
UiPath Community Day Kraków: Devs4Devs ConferenceUiPath Community Day Kraków: Devs4Devs Conference
UiPath Community Day Kraków: Devs4Devs Conference
UiPathCommunity
 
Supercomputing from the Desktop Workstation
Supercomputingfrom the Desktop WorkstationSupercomputingfrom the Desktop Workstation
Supercomputing from the Desktop Workstation
Larry Smarr
 

Recently uploaded (20)

Artificial Intelligence (AI), Robotics and Computational fluid dynamics
Artificial Intelligence (AI), Robotics and Computational fluid dynamicsArtificial Intelligence (AI), Robotics and Computational fluid dynamics
Artificial Intelligence (AI), Robotics and Computational fluid dynamics
 
this resume for sadika shaikh bca student
this resume for sadika shaikh bca studentthis resume for sadika shaikh bca student
this resume for sadika shaikh bca student
 
Lessons Of Binary Analysis - Christien Rioux
Lessons Of Binary Analysis - Christien RiouxLessons Of Binary Analysis - Christien Rioux
Lessons Of Binary Analysis - Christien Rioux
 
Verti - EMEA Insurer Innovation Award 2024
Verti - EMEA Insurer Innovation Award 2024Verti - EMEA Insurer Innovation Award 2024
Verti - EMEA Insurer Innovation Award 2024
 
Quantum Communications Q&A with Gemini LLM
Quantum Communications Q&A with Gemini LLMQuantum Communications Q&A with Gemini LLM
Quantum Communications Q&A with Gemini LLM
 
Knowledge and Prompt Engineering Part 2 Focus on Prompt Design Approaches
Knowledge and Prompt Engineering Part 2 Focus on Prompt Design ApproachesKnowledge and Prompt Engineering Part 2 Focus on Prompt Design Approaches
Knowledge and Prompt Engineering Part 2 Focus on Prompt Design Approaches
 
STKI Israeli Market Study 2024 final v1
STKI Israeli Market Study 2024 final  v1STKI Israeli Market Study 2024 final  v1
STKI Israeli Market Study 2024 final v1
 
Details of description part II: Describing images in practice - Tech Forum 2024
Details of description part II: Describing images in practice - Tech Forum 2024Details of description part II: Describing images in practice - Tech Forum 2024
Details of description part II: Describing images in practice - Tech Forum 2024
 
What’s New in Teams Calling, Meetings and Devices May 2024
What’s New in Teams Calling, Meetings and Devices May 2024What’s New in Teams Calling, Meetings and Devices May 2024
What’s New in Teams Calling, Meetings and Devices May 2024
 
AI_dev Europe 2024 - From OpenAI to Opensource AI
AI_dev Europe 2024 - From OpenAI to Opensource AIAI_dev Europe 2024 - From OpenAI to Opensource AI
AI_dev Europe 2024 - From OpenAI to Opensource AI
 
Research Directions for Cross Reality Interfaces
Research Directions for Cross Reality InterfacesResearch Directions for Cross Reality Interfaces
Research Directions for Cross Reality Interfaces
 
Dev Dives: Mining your data with AI-powered Continuous Discovery
Dev Dives: Mining your data with AI-powered Continuous DiscoveryDev Dives: Mining your data with AI-powered Continuous Discovery
Dev Dives: Mining your data with AI-powered Continuous Discovery
 
Blockchain and Cyber Defense Strategies in new genre times
Blockchain and Cyber Defense Strategies in new genre timesBlockchain and Cyber Defense Strategies in new genre times
Blockchain and Cyber Defense Strategies in new genre times
 
DealBook of Ukraine: 2024 edition
DealBook of Ukraine: 2024 editionDealBook of Ukraine: 2024 edition
DealBook of Ukraine: 2024 edition
 
Implementations of Fused Deposition Modeling in real world
Implementations of Fused Deposition Modeling  in real worldImplementations of Fused Deposition Modeling  in real world
Implementations of Fused Deposition Modeling in real world
 
Quality Patents: Patents That Stand the Test of Time
Quality Patents: Patents That Stand the Test of TimeQuality Patents: Patents That Stand the Test of Time
Quality Patents: Patents That Stand the Test of Time
 
Pigging Solutions Sustainability brochure.pdf
Pigging Solutions Sustainability brochure.pdfPigging Solutions Sustainability brochure.pdf
Pigging Solutions Sustainability brochure.pdf
 
Observability For You and Me with OpenTelemetry
Observability For You and Me with OpenTelemetryObservability For You and Me with OpenTelemetry
Observability For You and Me with OpenTelemetry
 
UiPath Community Day Kraków: Devs4Devs Conference
UiPath Community Day Kraków: Devs4Devs ConferenceUiPath Community Day Kraków: Devs4Devs Conference
UiPath Community Day Kraków: Devs4Devs Conference
 
Supercomputing from the Desktop Workstation
Supercomputingfrom the Desktop WorkstationSupercomputingfrom the Desktop Workstation
Supercomputing from the Desktop Workstation
 

A General Framework for Enhancing Prediction Performance on Time Series Data

  • 1. A General Framework for Enhancing Prediction Performance on Time Series Data Chin-Hui Chen 陳晉暉 Prof. Pu-Jen Cheng 鄭卜壬教授 增進時序資料預測效能之一般化模型
  • 2. 1. Motivation 2. Related Works 3. Framework 4. Experiment 5. Conclusion Agenda
  • 4. ● Time series data is everywhere. ● For example: ○ Query Trend Data ○ Traffic Flow Data Motivation
  • 5. Google Trends: "typhoon". Japan, 2004 - 2013.
  • 7. Traffic Flow: ETC bridge, 2009 - 2011
  • 8. Traffic Flow: ETC bridge, 2010
  • 9. Predict Time Series Data ● Time series data: {Yi } where i=1,...,t (t = current timestamp) Value Yi is specific data property. E.g. Traffic Flow, Query Frequency. ● Given {Yi } and prediction horizon h, predict the value of {Yj } where j=t+1,...,t+h.
  • 10. Predict Time Series Data (cont'd) ● Many researches have been studying to predict time series data. For example: Neural Network based method, Regression based method. ● These methods use past data {Yt-n ,..., Yt } to forecast future data {Yt+1 ,..., Yt+h }. Predict Method Past Data {Yt-n ,..., Yt } Future Data {Yt+1 ,..., Yt+h }
  • 11. Predict Time Series Data (cont'd) ● Short-term prediction ○ h=1 ○ e.g. Predict {Yt+1 }. ● Long-term prediction ○ h>1 ○ e.g. Predict {Yt+1 ,..., Yt+13 }.
  • 14. Intuitively... ● The nearer the dataset is, the more accurate we predicts. ● The longer the prediction horizon is, the more error occurs.
  • 15. ● The nearer... the dataset is, the more accurate we predicts. ● Predict Method: Exponential Smoothing ● We apply Exponential Smoothing on Traffic Flow Data.
  • 16. ● Traffic Flow Prediction
  • 17. The longer... the prediction horizon is, the more error occurs. ● Prediction Horizon = 10
  • 19. ● If the predict method captures the trend or periodicity of the time series data, then... ● Predict Method: Neural Network ○ Capture Periodicity nearer NOT ALWAYS accurate longer NOT ALWAYS error
  • 21. Also ● Continuous & Dependent a. Time Series Data is continuous. So the prediction can be continuous. b. The neighbor prediction results may cover each other and improve each other. If we want to predict at time t, it is possible to use result at t-1 or t-2 to cover the result.
  • 24. Multiple Prediction ● Therefore, for each data point in time series, it has been predicted h times. ● We will have "multiple prediction" in given data point in time series.
  • 26. Deep Color -> Accurate
  • 28. ● The most accurate result may not always happen in the latest one. ● We propose a general enhancement framework to utilize prediction results of multiple prediction to improve the accuracy.
  • 30. Related Works Time Series Predict Methods: 1. Machine Learning Based a. Neural Network 2. Regression Based a. ARIMA approach b. Holt-Winters ES approach
  • 32. NNet The architecture of multilayer perceptron is as follows: ● Notation: NNet(i, h) ● Input Layer: i neurons ● Single hidden layer: 4 neurons ● Output Layer: h neurons ○ The input neurons include {v(k), k = t−i+1, ..., t}, while the output neuron is {v(t+1)...v(t+h)}, where t represents the current time.
  • 33. ● Tangent sigmoid function and linear transfer function are used for activation function. ● This model is trained using back- propagation algorithm over the training dataset.
  • 34. ARIMA
  • 35. ARIMA ● Stands for "Autoregressive integrated moving average" ● The model comprises 3 parts. ○ differencing ○ autoregressive (AR) ○ moving average (MA) ● Seasonal ○ NS-ARIMA: Nonseasonal ARIMA ○ S-ARIMA: Seasonal ARIMA
  • 36. Differencing: non-stationary -> stationary ● stationary: ○ A stationary time series is one whose statistical properties such as mean, variance, autocorrelation, etc. are all constant over time.
  • 37. NS-ARIMA ● Notation: ARIMA (p, d, q) ○ d = the order of differencing ○ p = the order of autoregressive ○ q = the order of moving average
  • 42. ● In this work, S-ARIMA is adopted.
  • 44. Holt-Winters ES 1. Stands for "Holt-Winters Exponential Smoothing" 2. Trend ActualSmoothed Periodicity
  • 46. ● To improve time series prediction, a general enhancement framework is proposed. ● The framework utilizes multiple prediction results and tries to learn the data dependency to improve the accuracy.
  • 47. Predict Method Multiple Prediction Overview Past Data {Yt-n ,..., Yt } STE (Short- Term Enhancement) LTE-NR (Long- Term Enhancement NRegression) {NNet, ARIMA or HW-ES} LTE-R (Long- Term Enhancement Regression)
  • 48. ● Given a predict method, the multiple prediction result can be generated. The enhancement algorithms input these information and learn from it. ● The multiple prediction result and the corresponding labels are listed in the following slide.
  • 50. STE (Short-Term Enhancement) ● SVR (Support Vector Regression) is adopted. ● Target Value: Yt+1 ● As the multiple prediction is done, it is possible to have more accurate prediction values among Z1 - Z13.
  • 51. Feature Set 1. S1: Statistic a. Trimmed Mean (t_mean) b. Last N Prediction (last_n) c. Gaussian Distribution Modeling (gaussian_dist) 2. S2: Reliability a. Avg Min Error (avg_min_e) b. Last Min Error (last_min_e) c. Trend (trend) 3. Periodicity Feature
  • 53. S1 Statistic 1. Trimmed mean (t_mean) It calculates the mean after discarding given parts of a probability (P%) at high and low end. Mean(Z1 ,...,Zh ) trimmed with P = 10%.
  • 54. 2. Last N Prediction (last_n) For the elements: Zh , Zh-1 ,..., Z1 , get the lastest N predictions. N = 1 is applied. (E.g. Z13 )
  • 55. 3. Gaussian Distribution Modeling (gaussian_dist) where μ = mean(Z1 ,...,Zh ), σ = std(Z1 ,...,Zh ) Produce N values from the distribution. N = 1 is applied.
  • 57. S2 Reliability 1. Avg Min Error (avg_min_e) Ground Truth Long-Term Predict Long-Term Predict
  • 58. 1. Avg Min Error (avg_min_e) VZk : the vector of partial predicted results GTZk : the corresponding ground truth of VZk Select Zk with the min MAE1 (VZk , GTZk ) where k = 1,...,h-1 1 MAE = Mean Absolute Error
  • 59. 2. Last Min Error (last_min_e) Ground Truth Long-Term Predict Long-Term Predict
  • 60. 2. Last Min Error (last_min_e) Select Zk with the min MAE( VZk [1] , GTZk [1] ) where k = 1,...,h-1
  • 61. 3. Trend (trend) Ground Truth Long-Term Predict Long-Term Predict
  • 62. 3. Trend (trend) difference: d(m) (t) = d(m) (t) - d(m) (t-1) Select Zk with the max cosine_sim( d(1) (VZk ) , d(1) (GTZk ) ) where k = 1,...,h-1 and |VZk |>3
  • 63. Periodicity Feature ● The previous period data represents certain accurate confidence. Therefore, we consider periodicity into feature set property. ● Periodicity detection: FFT(Fast Fourier transform) ● Add periodicity enhancement to S1 and S2.
  • 66. Feature Set w/ Periodicity 1. S1: Statistic w/ Periodicity a. Trimmed mean (t_mean_wp) b. Last N Prediction (last_n) c. Gaussian Distribution Modeling (gaussian_dist_wp) 2. S2: Reliability w/ Periodicity a. Avg Min Error (avg_min_e_wp) b. Last Min Error (last_min_e_wp) c. Trend (trend_wp)
  • 67. S1 Statistic w/ Periodicity 1. Trimmed mean (t_mean_wp) It calculates the mean after discarding given parts of a probability (P%) at high and low end. Mean(Z1 ,...,Zh ,Zp ) trimmed with P = 10%.
  • 68. 3. Gaussian Distribution Modeling (gaussian_dist_wp) where μ = mean(Z1 ,...,Zh ,Zp ), σ = std(Z1 ,...,Zh ,Zp ) Produce N values from the distribution. N = 1 is applied.
  • 69. S2 Reliability w/ Periodicity 1. Avg Min Error (avg_min_e_wp) VZk : the vector of partial predicted results GTZk : the corresponding ground truth of VZk Select Zk with the min MAE(VZk , GTZk ) where k = 1,...,h-1,p
  • 70. 2. Last Min Error (last_min_e_wp) Select Zk with the min MAE( VZk [1] , GTZk [1] ) where k = 1,...,h-1,p
  • 71. 3. Trend (trend_wp) difference: d(m) (t) = d(m) (t) - d(m) (t-1) Select Zk with the max cosine_sim( d(1) (VZk ) , d(1) (GTZk ) ) where k = 1,...,h-1,p and |VZk |>3
  • 72. Feature Set w/ Periodicity 1. S1: Statistic w/ Periodicity a. Trimmed mean (t_mean_wp) b. Last N Prediction (last_n) c. Gaussian Distribution Modeling (gaussian_dist_wp) 2. S2: Reliability w/ Periodicity a. Avg Min Error (avg_min_e_wp) b. Last Min Error (last_min_e_wp) c. Trend (trend_wp)
  • 74. Predict Method Multiple Prediction Overview Past Data {Yt-n ,..., Yt } STE (Short- Term Enhancement) LTE-NR (Long- Term Enhancement NRegression) {NNet, ARIMA or HW-ES} LTE-R (Long- Term Enhancement Regression)
  • 75. LTE (Long-Term Enhancement) ● LTE-R (Long-Term Enhancement Regression) ● LTE-NR (Long-Term Enhancement NRegression)
  • 76. LTE-R (Long-Term Enhancement Regression) ● After STE is done, the predicted result can be used to improve Long-Term prediction. ● Given a predict method, the method takes STE result as one of the input value and make enhanced predictions. ● ...
  • 77. LTE-NR (Long-Term Enhancement NRegression) ● Train multiple SVRs to make N predictions. Yt+2 Yt+3 Yt+ 1 X1X2 Yt+4X3 Vz1 Vz2 Vz3 Vz12 Vzp
  • 78. LTE-NR (Long-Term Enhancement NRegression) ● These N predicted results can be passed into the predict method to enhance the prediction. ● LTE-R is the special case of LTE-NR when N=1 ● The behavior is illustrated. ...
  • 80. Predict Method Multiple Prediction Overview Past Data {Yt-n ,..., Yt } STE (Short- Term Enhancement) LTE-NR (Long- Term Enhancement NRegression) {NNet, ARIMA or HW-ES} LTE-R (Long- Term Enhancement Regression)
  • 82. Dataset ● BRS: ETC Data from Bridge Roadside System in Oceania Data Range Jan, 2009 - Dec, 2011 (3 yrs) Time Interval Week (ISO Week Date) Data Weekly Traffic Flow
  • 83. ● Traffic-Flow Theory ○ Traffic stream properties: speed(v), density(k), flow (q). ○ Flow(q)*: i. x1 : a specific detection point.(e.g., induction loop) ii. m: the number of vehicles passing through x1 . iii. T: a predefined time interval. (e.g., 1 month) * Henry Lieu (January/February 1999). "Traffic-Flow Theory". Public Roads (US Dept of Transportation) (Vol. 62· No. 4).
  • 84. Induction Loop Photo via http://auto.howstuffworks.com/car-driving-safety/safety-regulatory-devices/red-light- camera1.htm
  • 87. Observation 1. Periodicity observed. 2. Spring and summer: Dissimilar, shifting. 3. Fall: Regular. 4. Winter: Small disturbance.
  • 88. Experiment Setting ● Training Data: 2009, 2010 (104 weeks) ● Testing Data: 2011 (52 weeks) ● Prediction horizon: ○ Short-Term: h=1 ○ Long-Term: h=13 (3 months) ● Evaluate: RMSD/RMSE (stands for Root- Mean-Square Deviation/Error )
  • 89. Model Parameters ● NNet: ○ 5-fold CV. ○ input neurons: 52 ○ output neurons: h ● ARIMA: ○ d, p, q trained by Box-Jenkins approach ○ s = 52 ● HW-ES: ○ τ = 52 ● SVR: ○ 5-fold CV. ○ grid search: gamma(γ)= 2^(-3:3), cost(C)= 2^(-1:6)
  • 90. STE ● Baseline: NNet, ARIMA, HW-ES
  • 91. NNet ARIMA HW-ES BL 29508.35 25121.31 16438.36 S1 29096.10 (+1.40%) 27843.35* (-10.84%) 16246.83 (+1.17%) S1_wp 24824.02** (+15.87%) 21524.15** (+14.32%) 16333.37 (+0.64%) S2 27661.48* (+6.25%) 26718.26* (-6.36%) 15624.02* (+4.95%) S2_wp 25178.40* (+14.67%) 21862.60* (+12.97%) 14882.54* (+9.46%) S1+S2 28050.20* (+5.94%) 25552.13 (-1.71%) 15924.13* (+3.13%) Total 23593.48** (+20.04%) 21182.93* (+15.68%) 15592.74* (+5.14%) STE: BRS T-test with p < 0.01 (**) and p< 0.05 (*) against baseline method
  • 92. ● NNet got the best improvement. ○ NNet (+20.04%) v.s. HW-ES (+5.14%) ● HW-ES is more accurate. ○ HW-ES (16438.36 -> 15592.74) ○ NNet (29508.35 -> 23593.48) ● Periodicity feature has great improvement. ○ NNet ( +5.94% -> +20.04% ) ○ ARIMA ( -1.71% -> +15.68% )
  • 93. Feature Analysis ● To better understand the effectiveness of features, we analyze the correlation between RMSE and specific feature value. (RMSE v.s. Feature) ● Three standard measurements including Pearson’s product-moment, Kendall’s tau and Spearman’s rho are considered. ● The absolute values of measurements are depicted below.
  • 95. ● Periodicity feature overall gets better correlation. ● Without Periodicity ○ gaussian_dist ○ last_min_error ● With Periodicity ○ last_min_error_wp ○ trend_wp
  • 96. LTE-R (h=13) NNet ARIMA HW-ES BL 24321.10 20648.60 25934.51 LTE-R 23401.23* (+3.78%) 20562.28 (+0.41%) 23636.87* (+8.86%) T-test with p < 0.01 (**) and p< 0.05 (*) against baseline method
  • 97. LTE-NR (h=13) N=1 N=2 N=3 N=4 N=5 NNet +3.78% +1.56% (-58%) +5.26% (+39%) +0.91% (-76%) -0.87% (-123%) ARIMA +0.41% +1.21% (+195%) +0.92% (+120%) +0.12% (-70%) +0.13% (-68%) HW-ES +8.86% +9.13% (+3%) +9.59% (+7.6%) +8.45% (-4.6%) +3.14% (-65%)
  • 98. ● In LTE-R, ARIMA has the best prediction. But HW-ES improves the most. ● In LTE-NR, we can observe that when N=3 (NNet, HW-ES)or N=2(ARIMA) , the prediction is improved greatly.
  • 100. ● We design a general framework for enhancing prediction performance where the predict method can capture trend or periodicity property. ● We adopted Read-World traffic data. With the great improvement, ○ City's competitiveness planning ○ Improves the budget and forecast estimation ○ Improve maintenance planning to optimize the maintenance spending