Remove mask check key in XarmProcessor (#117)

This commit is contained in:
Adil Zouitine 2024-04-29 22:00:37 +02:00 committed by GitHub
parent 508bd92d03
commit 1ec5f77f7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class XarmProcessor:
def __init__(self, folder_path: str, fps: int | None = None):
self.folder_path = Path(folder_path)
self.keys = {"actions", "rewards", "dones", "masks"}
self.keys = {"actions", "rewards", "dones"}
self.nested_keys = {"observations": {"rgb", "state"}, "next_observations": {"rgb", "state"}}
if fps is None:
fps = 15