Skip to content
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

dataset_constant中weather_mv_4_4_s6_5_625的idx_in、idx_out疑问 #94

Open
linkenghong opened this issue Jan 10, 2024 · 1 comment
Open
Labels
bug Something isn't working question Further information is requested

Comments

@linkenghong
Copy link

dataset_constant中weather_mv_4_4_s6_5_625的step已经设置为6,那生成的self.data的数据本身已经是间隔6小时的数据了,可idx_in和idx_out还设置成间隔i乘以6,那数据间就不止间隔6小时了。因为取数据__getitem__时是从self.data取的。

@Lupin1998 Lupin1998 added bug Something isn't working question Further information is requested labels Jan 26, 2024
@linkenghong
Copy link
Author

我觉得将'idx_in'和'idx_out' 改成如下即可:
'idx_in': [i for i in range(-3, 1)],
'idx_out': [i + 1 for i in range(4)],

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants