We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
parser.add_argument('--seg_len', type=int, default=48, help='segment length') parser.add_argument('--win_len', type=int, default=48, help='windows length') 我看win_len只在这出现了,没有在别的地方用到,请问如果有用到他的作用是什么,是类似于PatchTST里面的stride吗
The text was updated successfully, but these errors were encountered:
你好,win_len这个没有用上,忽略即可。
设计初期,是考虑用win_len将输出窗口分段,seg_len将输入窗口分段。不过后面发现,两者长度设置为一样已经是最优了,所以为了统一只用了seg_len。
Sorry, something went wrong.
No branches or pull requests
parser.add_argument('--seg_len', type=int, default=48, help='segment length')
parser.add_argument('--win_len', type=int, default=48, help='windows length')
我看win_len只在这出现了,没有在别的地方用到,请问如果有用到他的作用是什么,是类似于PatchTST里面的stride吗
The text was updated successfully, but these errors were encountered: