Prophetverse
Figure 1: Generalized Additive Models are versatile. Prophet is one of the many models that can be built on top of it. The idea of Prophetverse is giving access to that universe.
Prophetverse leverages the Generalized Additive Model (GAM) idea in the original
Prophet model and extends it to be more flexible and customizable. The core principle of GAMs is to model the expected value
The innovation in Prophet is the use of Bayesian GAMs to model time series data. Instead of approximating the time series through auto-regressive models, Prophet treats it as a curve-fitting exercise. This approach results in fast, interpretable, and accurate forecasts. The Prophet formulation is:
where Effects
API, where the user can create their own components and priors, by using the already
available ones or by creating new BaseEffect
subclasses.
where
Likelihood
In the original Prophet, the likelihood is a Normal distribution, but in Prophetverse it can be Normal, Gamma, or Negative Binomial.
where
for some small threshold
Trend
There are mainly two types of trends supported: linear and logistic. We will first take a look at the original mathematical formulation of Prophet's paper, and then simplify it to obtain a simpler and more interpretable version.
Linear trend
Original formulation
The linear trend is modeled as a piecewise linear functions with changepoints. Let
The first part accounts for the rate adjustment at each changepoint, and the second part corrects the offset at each changepoint, so that the trend is continuous.
Prophetverse's equivalent formulation
This can be
simplified as a first-order spline regression with
We can also write the trend for all
Example
One possible realization of
Logistic trend
The logistic trend of the original model uses the piecewise logistic linear trend to
change the rate at which
where
Changepoint priors
A Laplace prior is put on the rate adjustment
Note
Although those trend are the ones that come with the library, the user can define any trend, including a trend that depends on some exogenous variable. Flexibility is the key here.
Seasonality
To model seasonality, Prophet uses a Fourier series to approximate periodic functions, allowing the model to fit complex seasonal patterns flexibly. This approach involves determining the number of Fourier terms (K
), which corresponds to the complexity of the seasonality. The formula for a seasonal component s(t)
in terms of a Fourier series is given as:
Here, P
is the period (e.g., 365.25 for yearly seasonality), and K
depends on the granularity of the seasonal changes one wishes to capture.
A Normal prior is placed on the coefficients,
Matrix Formulation of Fourier Series
To efficiently compute the seasonality for multiple time points, we can represent the Fourier series in a matrix form. This method is especially useful for handling large datasets and simplifies the implementation of the model in computational software.
Let
Coefficient Vector:
Define a vector 2K
containing the coefficients
The seasonality for all time points can then be computed through the matrix product of
Each element of vector
This matrix approach not only makes the computation faster and more scalable but also simplifies integration with other components of the forecasting model. One drawback is
that it assumes a constant seasonality, but an user can also define a seasonality that
changes with time in Prophetverse, by creating a custom Effect
class.
Multivariate model
Prophetverse also supports multivariate forecasting. In this case, the model is essentially the same, but for now only Normal Likelihood is supported. Depending on the usage of the library, we may add other likelihoods in the future (please open an issue if you need it!). In that case, all other components are estimated in the same way, but the likelihood is a multivariate distribution. The mean of the distribution is a vector, and the covariance matrix prior is a LKJ distribution.