-
Notifications
You must be signed in to change notification settings - Fork 24
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
Correct code errors in fw_chunks(self) #9
Comments
may be you need v.detach() |
I have found the same problem in this code. Moreover, did you notice the memory leak issue when running this code. |
No,I ran fsnet on ETTh and there were no problems. |
If you have the time, I hope you could run the original code of FSnet again. And you can use the "top" command to check the memory usage of this process while it is running. Then you will find that the memory occupied by this process continues to increase. |
It seems that I didn't encounter the problem you said. |
Could you give me your way of contact such as Wechat,? I hope we could discuss this problem in more detail. Thanks! |
it's irelandr |
Can we add a wechat to chat in detail, I have some doubts too.Wechat can be sent to my email: zhangweiyang12138@gmail.com |
idx = idx.unsqueeze(1).float()
old_w = ww @ idx
→
v = v.unsqueeze(1).float()
old_w = ww @ v
The text was updated successfully, but these errors were encountered: