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
There are some small issues with the current Adroit and Pointmaze datasets.
For example, door-cloned-v1:
door-cloned-v1
import minari dataset = minari.load_dataset("door-cloned-v1", download=True) ep = next(iter(dataset)) print(f"Obs shape {ep.observations.shape}") print({k: v.shape for k, v in ep.infos.items()})
prints
Obs shape (201, 39) {'success': (200,)}
This is because the AdroitHandDoor-v1 environment does not have the info["success"] key on the reset step.
AdroitHandDoor-v1
info["success"]
The pointmaze datasets have the same issue described here, where some episodes do not have the correct number of observations.
The text was updated successfully, but these errors were encountered:
alexdavey
No branches or pull requests
There are some small issues with the current Adroit and Pointmaze datasets.
Adroit datasets
For example,
door-cloned-v1
:prints
This is because the
AdroitHandDoor-v1
environment does not have theinfo["success"]
key on the reset step.Pointmaze datasets
The pointmaze datasets have the same issue described here, where some episodes do not have the correct number of observations.
The text was updated successfully, but these errors were encountered: