Shortcuts

Source code for torchrl.envs.transforms.r3m

# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

import importlib.util
from typing import List, Optional, Union

import torch
from tensordict import set_lazy_legacy, TensorDict, TensorDictBase
from torch.hub import load_state_dict_from_url
from torch.nn import Identity

from torchrl.data.tensor_specs import Composite, TensorSpec, Unbounded
from torchrl.data.utils import DEVICE_TYPING
from torchrl.envs.transforms.transforms import (
    CatTensors,
    Compose,
    FlattenObservation,
    ObservationNorm,
    Resize,
    ToTensorImage,
    Transform,
    UnsqueezeTransform,
)
from torchrl.envs.transforms.utils import _set_missing_tolerance

_has_tv = importlib.util.find_spec("torchvision", None) is not None


R3M_MODEL_MAP = {
    "resnet18": "r3m_18",
    "resnet34": "r3m_34",
    "resnet50": "r3m_50",
}


class _R3MNet(Transform):

    inplace = False

    def __init__(self, in_keys, out_keys, model_name, del_keys: bool = True):
        if not _has_tv:
            raise ImportError(
                "Tried to instantiate R3M without torchvision. Make sure you have "
                "torchvision installed in your environment."
            )
        from torchvision import models

        self.model_name = model_name
        if model_name == "resnet18":
            # self.model_name = "r3m_18"
            self.outdim = 512
            convnet = models.resnet18()
        elif model_name == "resnet34":
            # self.model_name = "r3m_34"
            self.outdim = 512
            convnet = models.resnet34()
        elif model_name == "resnet50":
            # self.model_name = "r3m_50"
            self.outdim = 2048
            convnet = models.resnet50()
        else:
            raise NotImplementedError(
                f"model {model_name} is currently not supported by R3M"
            )
        convnet.fc = Identity()
        super().__init__(in_keys=in_keys, out_keys=out_keys)
        self.convnet = convnet
        self.del_keys = del_keys

    @set_lazy_legacy(False)
    def _call(self, tensordict):
        with tensordict.view(-1) as tensordict_view:
            super()._call(tensordict_view)
        if self.del_keys:
            tensordict.exclude(*self.in_keys, inplace=True)
        return tensordict

    forward = _call

    def _reset(
        self, tensordict: TensorDictBase, tensordict_reset: TensorDictBase
    ) -> TensorDictBase:
        # TODO: Check this makes sense
        with _set_missing_tolerance(self, True):
            tensordict_reset = self._call(tensordict_reset)
        return tensordict_reset

    @torch.no_grad()
    def _apply_transform(self, obs: torch.Tensor) -> None:
        shape = None
        if obs.ndimension() > 4:
            shape = obs.shape[:-3]
            obs = obs.flatten(0, -4)
        out = self.convnet(obs)
        if shape is not None:
            out = out.view(*shape, *out.shape[1:])
        return out

    def transform_observation_spec(self, observation_spec: TensorSpec) -> TensorSpec:
        if not isinstance(observation_spec, Composite):
            raise ValueError("_R3MNet can only infer Composite")

        keys = [key for key in observation_spec.keys(True, True) if key in self.in_keys]
        device = observation_spec[keys[0]].device
        dim = observation_spec[keys[0]].shape[:-3]

        observation_spec = observation_spec.clone()
        if self.del_keys:
            for in_key in keys:
                del observation_spec[in_key]

        for out_key in self.out_keys:
            observation_spec[out_key] = Unbounded(
                shape=torch.Size([*dim, self.outdim]), device=device
            )

        return observation_spec

    @staticmethod
    def _load_weights(model_name, r3m_instance, dir_prefix):
        if model_name not in ("r3m_50", "r3m_34", "r3m_18"):
            raise ValueError(
                "model_name should be one of 'r3m_50', 'r3m_34' or 'r3m_18'"
            )
        url = "https://pytorch.s3.amazonaws.com/models/rl/r3m/" + model_name + ".pt"
        d = load_state_dict_from_url(
            url,
            progress=True,
            map_location=next(r3m_instance.parameters()).device,
            model_dir=dir_prefix,
        )
        td = TensorDict(d["r3m"], []).unflatten_keys(".")
        td_flatten = td["module"]["convnet"].flatten_keys(".")
        state_dict = td_flatten.to_dict()
        r3m_instance.convnet.load_state_dict(state_dict)

    def load_weights(self, dir_prefix=None, tv_weights=None):
        from torchvision import models
        from torchvision.models import (
            ResNet18_Weights,
            ResNet34_Weights,
            ResNet50_Weights,
        )

        if dir_prefix is not None and tv_weights is not None:
            raise RuntimeError(
                "torchvision weights API does not allow for custom download path."
            )
        elif tv_weights is not None:
            model_name = self.model_name
            if model_name == "resnet18":
                if isinstance(tv_weights, str):
                    tv_weights = getattr(ResNet18_Weights, tv_weights)
                convnet = models.resnet18(weights=tv_weights)
            elif model_name == "resnet34":
                if isinstance(tv_weights, str):
                    tv_weights = getattr(ResNet34_Weights, tv_weights)
                convnet = models.resnet34(weights=tv_weights)
            elif model_name == "resnet50":
                if isinstance(tv_weights, str):
                    tv_weights = getattr(ResNet50_Weights, tv_weights)
                convnet = models.resnet50(weights=tv_weights)
            else:
                raise NotImplementedError(
                    f"model {model_name} is currently not supported by R3M"
                )
            convnet.fc = Identity()
            self.convnet.load_state_dict(convnet.state_dict())
        else:
            model_name = R3M_MODEL_MAP[self.model_name]
            self._load_weights(model_name, self, dir_prefix)


[docs]class R3MTransform(Compose): """R3M Transform class. R3M provides pre-trained ResNet weights aimed at facilitating visual embedding for robotic tasks. The models are trained using Ego4d. See the paper: R3M: A Universal Visual Representation for Robot Manipulation (Suraj Nair, Aravind Rajeswaran, Vikash Kumar, Chelsea Finn, Abhinav Gupta) https://arxiv.org/abs/2203.12601 The R3MTransform is created in a lazy manner: the object will be initialized only when an attribute (a spec or the forward method) will be queried. The reason for this is that the :obj:`_init()` method requires some attributes of the parent environment (if any) to be accessed: by making the class lazy we can ensure that the following code snippet works as expected: Examples: >>> transform = R3MTransform("resnet50", in_keys=["pixels"]) >>> env.append_transform(transform) >>> # the forward method will first call _init which will look at env.observation_spec >>> env.reset() Args: model_name (str): one of resnet50, resnet34 or resnet18 in_keys (list of str): list of input keys. If left empty, the "pixels" key is assumed. out_keys (list of str, optional): list of output keys. If left empty, "r3m_vec" is assumed. size (int, optional): Size of the image to feed to resnet. Defaults to 244. stack_images (bool, optional): if False, the images given in the :obj:`in_keys` argument will be treaded separetely and each will be given a single, separated entry in the output tensordict. Defaults to ``True``. download (bool, torchvision Weights config or corresponding string): if ``True``, the weights will be downloaded using the torch.hub download API (i.e. weights will be cached for future use). These weights are the original weights from the R3M publication. If the torchvision weights are needed, there are two ways they can be obtained: :obj:`download=ResNet50_Weights.IMAGENET1K_V1` or :obj:`download="IMAGENET1K_V1"` where :obj:`ResNet50_Weights` can be imported via :obj:`from torchvision.models import resnet50, ResNet50_Weights`. Defaults to False. download_path (str, optional): path where to download the models. Default is None (cache path determined by torch.hub utils). tensor_pixels_keys (list of str, optional): Optionally, one can keep the original images (as collected from the env) in the output tensordict. If no value is provided, this won't be collected. """ @classmethod def __new__(cls, *args, **kwargs): cls.initialized = False cls._device = None cls._dtype = None return super().__new__(cls) def __init__( self, model_name: str, in_keys: List[str], out_keys: List[str] = None, size: int = 244, stack_images: bool = True, download: Union[bool, "WeightsEnum", str] = False, # noqa: F821 download_path: Optional[str] = None, tensor_pixels_keys: List[str] = None, ): super().__init__() self.in_keys = in_keys if in_keys is not None else ["pixels"] self.download = download self.download_path = download_path self.model_name = model_name self.out_keys = out_keys self.size = size self.stack_images = stack_images self.tensor_pixels_keys = tensor_pixels_keys self._init() def _init(self): """Initializer for R3M.""" self.initialized = True in_keys = self.in_keys model_name = self.model_name out_keys = self.out_keys size = self.size stack_images = self.stack_images tensor_pixels_keys = self.tensor_pixels_keys # ToTensor transforms = [] if tensor_pixels_keys: for i in range(len(in_keys)): transforms.append( CatTensors( in_keys=[in_keys[i]], out_key=tensor_pixels_keys[i], del_keys=False, ) ) totensor = ToTensorImage( unsqueeze=False, in_keys=in_keys, ) transforms.append(totensor) # Normalize mean = [0.485, 0.456, 0.406] std = [0.229, 0.224, 0.225] normalize = ObservationNorm( in_keys=in_keys, loc=torch.as_tensor(mean).view(3, 1, 1), scale=torch.as_tensor(std).view(3, 1, 1), standard_normal=True, ) transforms.append(normalize) # Resize: note that resize is a no-op if the tensor has the desired size already resize = Resize(size, size, in_keys=in_keys) transforms.append(resize) # R3M if out_keys in (None, []): if stack_images: out_keys = ["r3m_vec"] else: out_keys = [f"r3m_vec_{i}" for i in range(len(in_keys))] self.out_keys = out_keys elif stack_images and len(out_keys) != 1: raise ValueError( f"out_key must be of length 1 if stack_images is True. Got out_keys={out_keys}" ) elif not stack_images and len(out_keys) != len(in_keys): raise ValueError( "out_key must be of length equal to in_keys if stack_images is False." ) if stack_images and len(in_keys) > 1: unsqueeze = UnsqueezeTransform( in_keys=in_keys, out_keys=in_keys, unsqueeze_dim=-4, ) transforms.append(unsqueeze) cattensors = CatTensors( in_keys, out_keys[0], dim=-4, ) network = _R3MNet( in_keys=out_keys, out_keys=out_keys, model_name=model_name, del_keys=False, ) flatten = FlattenObservation(-2, -1, out_keys) transforms = [*transforms, cattensors, network, flatten] else: network = _R3MNet( in_keys=in_keys, out_keys=out_keys, model_name=model_name, del_keys=True, ) transforms = [*transforms, network] for transform in transforms: self.append(transform) if self.download is True: self[-1].load_weights(dir_prefix=self.download_path, tv_weights=None) elif self.download: self[-1].load_weights( dir_prefix=self.download_path, tv_weights=self.download ) if self._device is not None: self.to(self._device) if self._dtype is not None: self.to(self._dtype)
[docs] def to(self, dest: Union[DEVICE_TYPING, torch.dtype]): if isinstance(dest, torch.dtype): self._dtype = dest else: self._device = dest return super().to(dest)
@property def device(self): return self._device @property def dtype(self): return self._dtype

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources