d-ailin/GDN

multi-step prediction with iteration

Closed this issue · 3 comments

I'm sorry to bother you with a problem I can't solve.
when I manipulate the input iteratively by appending the predicted value at T time step, and use the new input to predict the values at T+1,the Losses have increased exponentially.
32333f5eb5cd604889847e35d54e53c
I used the trained model test data (test.csv) to output "predicted", which resulted in exponentially larger predictions from the fourth round. Can you give some analysis or advice?
f3bce4f16e0f5a4bfbed8e5bc10d02c
Looking forward to your reply!

the second pic:
f3bce4f16e0f5a4bfbed8e5bc10d02c

Hi, i see. I guess it might be due to the error propagation in the sequential modeling, but it seems a bit severe from your cases. In this case, you might want to use more time steps as input, or try the way of training with an output of 10 dimensions. Sorry for the inconvenience.

Hi, i see. I guess it might be due to the error propagation in the sequential modeling, but it seems a bit severe from your cases. In this case, you might want to use more time steps as input, or try the way of training with an output of 10 dimensions. Sorry for the inconvenience.

OK,Thanks for your reply!