8 lines
139 B
Python
8 lines
139 B
Python
import hydra
|
|
from omegaconf import DictConfig
|
|
|
|
|
|
def make_robot(cfg: DictConfig):
|
|
robot = hydra.utils.instantiate(cfg)
|
|
return robot
|