Skip to content
New issue

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

Wrong normalization of the images #61

Closed
Cadene opened this issue Mar 30, 2024 · 2 comments
Closed

Wrong normalization of the images #61

Cadene opened this issue Mar 30, 2024 · 2 comments
Assignees

Comments

@Cadene
Copy link
Collaborator

Cadene commented Mar 30, 2024

We compute stats on raw data. For instance:

stats["observation", "image", "top", "max"].max()
tensor(255.)

However, in lerobot/common/datasets/factory.py we apply a first transform to modify the pixel range of images from [0,255] to [0,1]:

transforms = [Prod(in_keys=img_keys, prod=1 / 255)]

then we apply our stats which expect images to be in the range [0,255].

This bug only affects tdmpc which uses image keys during its normalization:

        in_keys = [("observation", "state"), ("action")]

        if cfg.policy.name == "tdmpc":
            # TODO(rcadene): we add img_keys to the keys to normalize for tdmpc only, since diffusion and act policies normalize the image inside the model for now
            in_keys += img_keys
            # TODO(racdene): since we use next observations in tdmpc, we also add them to the normalization. We are wasting a bit of compute on this for now.
            in_keys += [("next", *key) for key in img_keys]
            in_keys.append(("next", "observation", "state"))

cc @alexander-soare @aliberts @qgallouedec

@alexander-soare alexander-soare self-assigned this Apr 10, 2024
@alexander-soare
Copy link
Contributor

Thanks @Cadene , I stumbled across this myself. I'll take care of it.

@Cadene
Copy link
Collaborator Author

Cadene commented Apr 11, 2024

Addressed by #64

@Cadene Cadene closed this as completed Apr 11, 2024
@aliberts aliberts linked a pull request Apr 24, 2024 that will close this issue
@aliberts aliberts removed a link to a pull request Apr 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants