# 数据名称
parser.add_argument('--data',type=str, required=False, default='ETTh1', choices=['ETTh1','ETTh2','ETTm1'],help='name of dataset')# 数据路径
parser.add_argument('--root_path',type=str, default='./datasets/',help='root path of the data file')# 数据文件
parser.add_argument('--data_path',type=str, default='ETTh1.csv',help='location of the data file')
# 数据名称
parser.add_argument('--data',type=str, required=False, default='power data', choices=['ETTh1','ETTh2','ETTm1'],help='name of dataset')# 数据路径
parser.add_argument('--root_path',type=str, default='./datasets/',help='root path of the data file')# 文件名
parser.add_argument('--data_path',type=str, default='power data.csv',help='location of the data file')# 多变量预测
parser.add_argument('--features',type=str, default='M', choices=['S','M'],help='features S is univariate, M is multivariate')# 目标列
parser.add_argument('--target',type=str, default='总有功功率(kw)',help='target feature')# 采样间隔(分钟)
parser.add_argument('--freq',type=str, default='t',help='freq for time features encoding, options:[s:secondly, t:minutely, h:hourly, d:daily, b:business days, w:weekly, m:monthly], you can also use more detailed freq like 15min or 3h')# 模型保存路径
parser.add_argument('--checkpoints',type=str, default='exp/ETT_checkpoints/',help='location of model checkpoints')# 是否翻转时间序列
parser.add_argument('--inverse',type=bool, default =False,help='denorm the output data')# 选择时间编码方式
parser.add_argument('--embed',type=str, default='timeF',help='time features encoding, options:[timeF, fixed, learned]')
修改项目预测需求以及回视窗口等参数
parser.add_argument('--seq_len',type=int, default =480,help='input sequence length of SCINet encoder, look back window')
parser.add_argument('--label_len',type=int, default =288,help='start token length of Informer decoder')
parser.add_argument('--pred_len',type=int, default =960,help='prediction sequence length, horizon')