Applying NeuralProphet at Scale #635
Replies: 1 comment
-
Hi @sargupta You should be able to apply NeuralProphet in a similar way as you do with Prophet.
Do I understand right, that on average, your time-series have a length of 20 time-stamps? Suggestion: Sidenote: |
Beta Was this translation helpful? Give feedback.
-
Prerequisites
If you have the same question but the Answer does not solve your issue, please continue the conversation there.
If you have the same issue but there is a twist to your situation, please add an explanation there.
Please post an idea or feedback
Is your feature request related to a problem? Please describe.
My dataset looks like this
In real, there are 2.7 million
ID
s and total 56 million rows.I am using Azure Databricks (PySpark) and trying to apply
fbprophet
on a sampled dataset of 10000 rows and it's already taking 5+ hours.I am considering applying
NeuralProphet
andStatsForecast
but not sure how can I apply the forecast model for each individualID
to do the forecasting onID
basis.Any suggestions?
NB: while applying
fbprophet
,val
becomes 'y' andDate
becomesds
in the respective order.Here is what I have tried so far:
Describe the solution you'd like
I would like to apply NeuralProphet model for each ID to make individual id based forecasting.
At present I can not find anything close to that.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
Beta Was this translation helpful? Give feedback.
All reactions