You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear Authors,
Thanks for the great work! Currently I'm working into the codes and paper of your article, and try to fine-tune a model based on TEMPO using custom datasets. However, I'm stuck in two problems. The first one is that I'm not able to predict on several time series at a time. Hence I'm wondering if I can predict several time series concurrently just like what it does in Neuralforecast where each time series are distinguished by 'unique_id'. (Currently I can only set target_data with a time series dataset belonging to a 'cate_id' at a time, which is a little kind of inefficient==) The second problem is that I would like to predict the 'y' of next H steps but the flag 'pred' seems not to be able to predict without ground truth. Could you help me out on the above two issues?
Really looking forward to your reply! Thanks a lllottt!
Best regards
The text was updated successfully, but these errors were encountered:
Thanks again for your interest! For the first problem, we are also working on accessing TEMPO in Neuralforecast. But currently, we would like to suggest you work on the test data loader part, where you can get a sample with [b, l, n] (b is batch size, l is time series length and n is the feature size, which is 6000 in your case) instead of [b, l, 1]. Then you can modify the data_provider.py in __get_item__ function
Dear Authors,
Thanks for the great work! Currently I'm working into the codes and paper of your article, and try to fine-tune a model based on TEMPO using custom datasets. However, I'm stuck in two problems. The first one is that I'm not able to predict on several time series at a time. Hence I'm wondering if I can predict several time series concurrently just like what it does in Neuralforecast where each time series are distinguished by 'unique_id'. (Currently I can only set target_data with a time series dataset belonging to a 'cate_id' at a time, which is a little kind of inefficient==) The second problem is that I would like to predict the 'y' of next H steps but the flag 'pred' seems not to be able to predict without ground truth. Could you help me out on the above two issues?
Really looking forward to your reply! Thanks a lllottt!
Best regards
The text was updated successfully, but these errors were encountered: