Exponentially Weighted Moving Average
Original Source: https://www.coursera.org/specializations/deep-learning
Moving average is an average of changing values.
Simple Moving Average
The simple moving average (SMA) calculates an average of the last n prices, where n represents the number of periods for which you want the average:
SMA=x1+x2+...+xnnSMA=x1+x2+...+xnnExponentially Weighted Moving Average
v0=0v0=0
vt=βvt−1+(1−β)xtvt=βvt−1+(1−β)xt
vt:=vt1−βtvt:=vt1−βt (bias correction)
vtvt approximates average of xtxt and previous 11−β11−β xxs. Therefore, larger the ββ, smoother the graph but less sensitive to change of latest xx.
Bias Correction
Green line is a graph after applying bias correction, and purple line is a graph without bias correction. Without bias correction, exponentially weighted moving average calculates too small value for small tts. Thus, smaller the tt is, we divide vtvt with smaller value(vt:=vt1−βtvt:=vt1−βt).
Why Use Exponentially Weighted Average?
Simple moving average is more accurate then exponentially weighted average, but why do we use exponentially weighted average?
When computing averages of a lot of variables, using simple moving average takes up a lot of memory and is computationally expensive.
But when we use exponentially weightd average, we just need one real number variable vv and update it when we move forward. It is both memory and computationally efficient.
Leave a Comment