act-plus-plus icon indicating copy to clipboard operation
act-plus-plus copied to clipboard

Lack of image normalization in DiffusionPolicy

Open hesic73 opened this issue 10 months ago • 3 comments

In policy.py, image normalization is applied in both ACTPolicy and CNNMLPPolicy as follows:

        normalize = transforms.Normalize(mean=[0.485, 0.456, 0.406],
                                         std=[0.229, 0.224, 0.225])
        image = normalize(image)

However, this normalization step is missing in DiffusionPolicy. Is this omission intentional? Could you clarify the reasoning behind this difference?

hesic73 avatar Apr 13 '24 03:04 hesic73