nbeatsx icon indicating copy to clipboard operation
nbeatsx copied to clipboard

Results 12 nbeatsx issues
Sort by recently updated
recently updated
newest added

I am using nbeatsx_example.ipynb, and add some codes as follow: result jpg https://github.com/943fansi/GuideOfP/blob/main/1.jpg ```y_true, y_hat, block, *_ = model.predict(ts_loader=val_loader, return_decomposition=True) print(y_true.shape, y_hat.shape, block.shape) plt.plot(range(168, 336), y_true.flatten(), label='Price') plt.plot(range(168, 336), y_hat.flatten(),...

Hi. I read your paper very well. I want to do two experiments. 1. Multivariate regression You said "The NBEATSx model offers a solution to the multivariate regression problem" in...

Hi. Thanks for the amazing paper and architecture. I was trying to find out how many stacks in a generic model you used and I noticed in your paper: "The...

Thank you for this paper and the code. I am excited to try out the NBEATSx. Would it be possible for you to share a minimal notebook that applies the...

The dropout_prob_exogenous seems to be unused

Hi, My name is Pablo Navarro. Your team and I have already exchanged a few mails over the wonderful paper you've made. Thanks again for the contribution. Now that the...

Hi, there! Datasets of nbeatsx can not be downloaded. The following URL is invalid. SOURCE_URL = 'https://sandbox.zenodo.org/api/files/da5b2c6f-8418-4550-a7d0-7f2497b40f1b/'

Thank you for your paper! Can NbeatsX be used for multiple-variate datasets (not single variate) ? Thanks a lot!

What these two masks use for? When assigning the variables, the outsample_mask are all one, and the insample_mask are all one except the padding. But when getting batch from dataloader,...

Hi, I was exploring the repository and noticed that the loss metrics import statement in `nbeats.py` was missing some of the import statements causing errors in line 361 to 367....