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
选自class Dataset_PEMS(Dataset):类 ` if self.scale: self.scaler.fit(train_data) data = self.scaler.transform(data)
df = pd.DataFrame(data) df = df.fillna(method='ffill', limit=len(df)).fillna(method='bfill', limit=len(df)).values`
1.在测试集上进行bfill,会引入未来信息。 2.在测试集上进行标准化,会引入未来的均值和方差。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
选自class Dataset_PEMS(Dataset):类
` if self.scale:
self.scaler.fit(train_data)
data = self.scaler.transform(data)
1.在测试集上进行bfill,会引入未来信息。
2.在测试集上进行标准化,会引入未来的均值和方差。
The text was updated successfully, but these errors were encountered: