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
VecNorm
There are a range of cases where we would like to recover the original data.
Adding a method to VecNorm to denormalize a tensordict or return a separate class for this purpose.
For example:
env = TransformedEnv(env, VecNorm(...)) tensordict = env.rollout(...) tensordict_denormed = vecnorm.denorm(tensordict) # or denorm = VecNorm.get_denorm() tensordict_denormed = denorm(tensordict)
Glad to implement it in whichever solution you feel comfortable with.
The text was updated successfully, but these errors were encountered:
Sounds reasonable, there's a whole stack of things I want to do to improve vecnorm, i'll add that to the list!
Sorry, something went wrong.
vmoens
No branches or pull requests
Motivation
There are a range of cases where we would like to recover the original data.
Solution
Adding a method to
VecNorm
to denormalize a tensordict or return a separate class for this purpose.For example:
Additional context
Glad to implement it in whichever solution you feel comfortable with.
Checklist
The text was updated successfully, but these errors were encountered: