File size: 291 Bytes
604e535 | 1 2 3 4 5 6 7 8 9 | """Physics MPC without flow evaluation."""
from experiments.physics_mpc_no_flow.src.config import default_config
from experiments.physics_mpc_no_flow.src.mpc import plan
def evaluate(config):
cfg = default_config() | config
return plan(config["image"], {"goal": cfg["goal"]}, cfg)
|