Hello,
I am working with APL (SAP Automated Predictive Library) to perform some analysis like timeseries.
I wrote a sample Code to forecast 365 point and I get this result
My input data range is from 10 to 63, I didn't know why i am getting forecasting data from -3 to 40.
I am confused and I don't know if I made a wrong thing or the training was not good.
Second, I insered APL/CuttingStrategy', 'sequential' in the config table
drop table FORECAST_CONFIG;
create table FORECAST_CONFIG like OPERATION_CONFIG_T;
insert into FORECAST_CONFIG values ('APL/Horizon', '365');
insert into FORECAST_CONFIG values ('APL/TimePointColumnName', 'DATE');
insert into FORECAST_CONFIG values ('APL/CuttingStrategy', 'sequential')
But when i take a look to Summury table i get ModelCuttingStrategy;sequential with no test
Is that any things to do to force the CuttingStrategy ?
Thanks in advance
Houssem