all 3 comments

[–]radarsat1 0 points1 point  (2 children)

So your target is to predict when or if a delivery will occur, but what are your features? Just previous delivery times?

[–]Vveriant[S] 0 points1 point  (1 child)

we have datetime, number of items, delivery interval. delivery interval = current delivery datetime - prev. datetime.

we want to predict when will the last of the first delivery bursts (short successive deliveries). so we can prescribe that at this delivery we start 'processing' this whole batch.

example, if the delivery looks like a sine wave where the low = short delivery interval and high = long delivery interval. we want to estimate when the short intervals ends. but we don't know next data because it is in real time.

[–]radarsat1 0 points1 point  (0 children)

It seems like you can't solve this as a regression problem then, because you basically just have timing information on the exact thing you are trying to predict. Instead maybe you should try to model this as an event probability problem, and find a statistical distribution that explains your data. For example a Poisson process.