Files
lerobot/lerobot/common/robot_devices/robots/factory.py

8 lines
139 B
Python

import hydra
from omegaconf import DictConfig
def make_robot(cfg: DictConfig):
robot = hydra.utils.instantiate(cfg)
return robot