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
dataset_constant中weather_mv_4_4_s6_5_625的step已经设置为6,那生成的self.data的数据本身已经是间隔6小时的数据了,可idx_in和idx_out还设置成间隔i乘以6,那数据间就不止间隔6小时了。因为取数据__getitem__时是从self.data取的。
The text was updated successfully, but these errors were encountered:
我觉得将'idx_in'和'idx_out' 改成如下即可: 'idx_in': [i for i in range(-3, 1)], 'idx_out': [i + 1 for i in range(4)],
Sorry, something went wrong.
No branches or pull requests
dataset_constant中weather_mv_4_4_s6_5_625的step已经设置为6,那生成的self.data的数据本身已经是间隔6小时的数据了,可idx_in和idx_out还设置成间隔i乘以6,那数据间就不止间隔6小时了。因为取数据__getitem__时是从self.data取的。
The text was updated successfully, but these errors were encountered: