singlestep predict
Opened this issue · 1 comments
lxk8998 commented
I think the code in singlestep predict is wrong.
train_label = input_data[i + output_window : i + input_window + output_window] should be
train_label = input_data[i + input_window : i + input_window + output_window]
Jesse-rogue commented
I think the code in singlestep predict is wrong. train_label = input_data[i + output_window : i + input_window + output_window] should be train_label = input_data[i + input_window : i + input_window + output_window]
but it will not successfully run.