hi all, can I use neural forecast for hierarchical...
# neural-forecast
i
hi all, can I use neural forecast for hierarchical monthly sales forecasting? I have data like that:
n
yes
🙌 1
i
great could you please share with me python code to prepare my data for neuralforecast or link of this code
m
Hello! You can look at our tutorial on using neuralforecast and then performing reconciliation with hierarchicalforecast here.
🙌 1
i
I have an issue, when i prepare data and aggregation i got only few rows for train an test because i have monthly sales i dont have daily sales how to fix that
Exception: Time series is too short for training, consider setting a smaller input size or set start_padding_enabled=True
m
Make sure your
unique_id
column has the same amount of unique values as the number of unique time series that you have. Otherwise, not much you can do with a limited dataset. You could try reducing the horizon, or as the exception says, use a smaller input size.