I am trying to import time-series data to the Amazon forecast. While importing the dataset group, I am getting an error saying
Too few observations (1055) for the number of items (1055), averaging 1.000 observations per item
My dataset has 1055 entries, csv format:[item_id, timestamp, utilization]
1,2020-01-01 09:01:00,23
2,2020-01-02 00:00:00,45
3,2020-01-03 00:00:00,41
4,2020-01-04 00:00:00,42
5,2020-01-05 00:00:00,43
I can think of two possibly two reasons for this issue:
- Each item needs to be identified uniquely --> Above dataset has item_id which is unique for each item.
- 1055 records is too few --> I tried importing 100k records. Still facing the same issue.
Here, each item in the dataset can be identified uniquely. The AWS forecast documentation mentioned nothing about this error.