Occupation forecast

The Occupation forecast is the process of forecasting the future occupation based on previous measurements for a specific Basket.

The input of the process are:

Fitting of the prediciton model

The predicition is performed by FbProphet that is trained on the history.

The history is generated using p and np: starting from p we take a sequence of time samples interspersed of 30min until p - np. Given the time sample sequence, we apply the occupation function and obtain a {o(t_i)} sequence which is the history we will use for the prediction.

During the fitting of the model, we want Prophet to be good in grasping the seasonality of the occupancy. We assume to have recurrent behavior:

Obviously we convey Prophet to learn a certain periodical recurrency only if we have enough history data.

It’s also very important to hint Prophet that some days are an exception to the recurrent behavior because of the weather. We do such through the holidays concept: within the history period and the future period, we mark the days that are considered to be Unplayable.

Fitting visualization on fake measurements

Inference

After fitting, the prediciton will be a sequence of occupancy values for the next nf days starting from p, interspersed of 30min.

Possibly, given a time instant t^ in the future the final occupancy value is evaluated by interpolating over this sequence in order to approximate o(t^).