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
I am trying to use the SAC loss with a memory model.
The memory model expects data leading with batch dimension [B,T]
[B,T]
I pass data with this shape to the loss, but here it gets reshaped
rl/torchrl/objectives/sac.py
Line 1150 in 371181c
causing the loss of the dimension T, which I cannot retrieve in my model.
Would it be possible to remove the reshaping of the data from the loss?
The text was updated successfully, but these errors were encountered:
reshape(-1)
objectives
kurtamohler
Successfully merging a pull request may close this issue.
I am trying to use the SAC loss with a memory model.
The memory model expects data leading with batch dimension
[B,T]
I pass data with this shape to the loss,
but here it gets reshaped
rl/torchrl/objectives/sac.py
Line 1150 in 371181c
causing the loss of the dimension T, which I cannot retrieve in my model.
Would it be possible to remove the reshaping of the data from the loss?
The text was updated successfully, but these errors were encountered: