You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After making some adjustments to the config.json file from the original download in order to work with the SimperEnv Google Robot environment such that now it looks like this:
And directly executing the output action on the environment... But this resulted in some funky results:
So therefore I need the mean and std for both the state and the action to be rescaled, but I'm guessing these values are domain-specific and have to be computed by my own, right? If so, there is not a proper way to load these values into the model (as the normalizer and unnormalizer are created on the __init__() method).
This means that the pretrained weights that are loaded should feature such values, as per the error message AssertionError: meanis infinity. You should either initialize withstats as an argument, or use a pretrained model.
Could the weights be updated to feature this values? Otherwise, could I get some insights as to how to properly scale these values?
Thank you very much in advance
The text was updated successfully, but these errors were encountered:
This is truly amazing! Could you share how you managed to load the simpler environment into LeRobot? I would greatly appreciate it if you could share the code as well. Thank you so much for your help!
Starting off, this is kind of a duplicate of #694
After making some adjustments to the
config.json
file from the original download in order to work with the SimperEnv Google Robot environment such that now it looks like this:I previously tried not performing any operations over the robot's outputs
I am directly using the policy with a batch of actions
With
in_batch
being:And directly executing the output action on the environment... But this resulted in some funky results:
So therefore I need the mean and std for both the state and the action to be rescaled, but I'm guessing these values are domain-specific and have to be computed by my own, right? If so, there is not a proper way to load these values into the model (as the normalizer and unnormalizer are created on the
__init__()
method).This means that the pretrained weights that are loaded should feature such values, as per the error message
AssertionError:
meanis infinity. You should either initialize with
statsas an argument, or use a pretrained model.
Could the weights be updated to feature this values? Otherwise, could I get some insights as to how to properly scale these values?
Thank you very much in advance
The text was updated successfully, but these errors were encountered: