-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can't see the model's detail in the code #11
Comments
Hi @signalworker123, N-HiTS is based on deep stacked MLPs with doubly residual connections for the forecast and backast signals. The main contributions to the architecture are the input pooling and the use of hierarchical interpolation for the multi-step predictions strategy. See Figure below: |
Regarding data flows you might want to try: How is Pycharm (the IDE) related to visualization of data flows of a Pytorch model? |
Thank you very much ! I just a little confuse about the hierarchical interpolation , I want to see the detail to hierarchical interpolation in the code ,but when I use Pycharm debug in the experiment/utils.model_fit_predict the trainer.fit can't debug in ,so I can't see the training data how to flow in the model . |
Interpolation code is performed in here, where we take thetas and recover forecast size. This plot captures the intuition of hierarchical interpolation, and the induced layers frequency specialization (and the time locality beyond Fourier transform): If you are interested in the theory behind it, we found very cool connections between the |
By the way @signalworker123, We are focusing now our efforts in the NeuralForecast library where we already host |
Thank you again, I think I should learn more about Pytorch Lighting and read you paper more carefully.I just try informer before but it doesn't work well. I just notice you mentioned library when I chatting with you , thank you . I well try the Demo in the library. |
Here is the NeuralForecast NHITS example and documentation. |
I want see the model's detail in the code,but i found the Pytorch Lightning in the pycharm can't debug, they just run,how can i see the training data flows in the model? And it will makes me understand the model better. Thank you.
The text was updated successfully, but these errors were encountered: