-
Notifications
You must be signed in to change notification settings - Fork 426
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
Operation on Dataset #53
Comments
in data_provider data_loader.py Class Dataset_ETT_hour(Dataset) |
This is quite plain, you can print the intermediate results. |
Thank you very much for advice |
Simple explaination for train、val、test:https://github.com/zhouhaoyi/Informer2020/issues/164 |
border1s = [0, 12 * 30 * 24 - self.seq_len, 12 * 30 * 24 + 4 * 30 * 24 - self.seq_len] |
`border1s = [0, 12 * 30 * 24 - self.seq_len, 12 * 30 * 24 + 4 * 30 * 24 - self.seq_len]
border2s = [12 * 30 * 24, 12 * 30 * 24 + 4 * 30 * 24, 12 * 30 * 24 + 8 * 30 * 24]
border1 = border1s[self.set_type]
border2 = border2s[self.set_type]#没看懂
Thanks for watching this,I wonder why and how you set the border and why
train_data = df_data[border1s[0]:border2s[0]]
The text was updated successfully, but these errors were encountered: