-
Notifications
You must be signed in to change notification settings - Fork 20
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
How does it work at inference time? #1
Comments
The statement in your first sentence is correct, and I think they did implement it. Read the line 167-173 in the
|
I also have questions about this reasoning process. In the following code, only the vehicles layer is set to the current state, and the h_cur of the previous ConvLSTM is assigned to the next inp[0].
But in inference time, the environmental information should not be obtained because it comes from the future. I modified this code to the following code and tested it, and found that the result was worse:
Before modified the code, the result is: How could the future environmental information be used in the reasoning process? |
In order to predict multiple time steps ahead for the training/validation/testing where you already have access to the future intermediate representations you simply combine the prediction at the previous time step with the next incoming intermediate representation and use this as the next time step's input. But how do you predict multiple time steps ahead live at inference time when you don't have access to the future intermediate representations? I couldn't see any code for this in the repo.
The text was updated successfully, but these errors were encountered: