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
在staeformer_arch.py中, self.dow_embedding = nn.Embedding(7, dow_embedding_dim) dow_emb = self.dow_embedding(dow.long()),期望的输入应该类似这样 [3, 3, 6, 6, 6, 2, 4, 0, 4, 2, 2, 2, 6, 2, 0, 4] 与PEMS04数据预处理脚本产生的输入: 不符合,应该是0-6的离散值才符合吧
self.dow_embedding = nn.Embedding(7, dow_embedding_dim)
dow_emb = self.dow_embedding(dow.long())
[3, 3, 6, 6, 6, 2, 4, 0, 4, 2, 2, 2, 6, 2, 0, 4]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在staeformer_arch.py中,
self.dow_embedding = nn.Embedding(7, dow_embedding_dim)
dow_emb = self.dow_embedding(dow.long())
,期望的输入应该类似这样[3, 3, 6, 6, 6, 2, 4, 0, 4, 2, 2, 2, 6, 2, 0, 4]
与PEMS04数据预处理脚本产生的输入:
不符合,应该是0-6的离散值才符合吧
The text was updated successfully, but these errors were encountered: