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
During the conversion of HDF5 files into the Lerobot dataset, the last frame from the previous environment reset is always saved as the first frame of the current episode.
As shown in image 1, the first frame of the video is actually not the initial scene in my environments.
Figure 2 shows the true first frame that should have been saved for this episode.
You can find the mismatch frame in this video if you scrub the video's progress bar to the first frame.
During the conversion of HDF5 files into the Lerobot dataset, the last frame from the previous environment reset is always saved as the first frame of the current episode.
You can find the mismatch frame in this video if you scrub the video's progress bar to the first frame.
episode_000025.mp4
convert_hdf5_to_lerobot.py.Simply changing
frames[:-1]toframes[1:]will resolve this.