cccat6's picture
Initial FlowMo-WM public code release
604e535 verified
raw
history blame
365 Bytes
"""PID / LOS controller evaluation."""
from experiments.pid_los_controller.src.config import default_config
from experiments.pid_los_controller.src.controller import compute_action
def evaluate(config):
"""Evaluate the controller on planning tasks."""
cfg = default_config() | config
return compute_action(config["image"], {"goal": cfg["goal"]}, cfg)