FlowMo-WM / experiments /tdmpc2 /src /predict.py
cccat6's picture
Initial FlowMo-WM public code release
604e535 verified
"""TD-MPC2 latent rollout interface."""
def rollout(model, batch, horizon):
images, actions, future_actions = batch
return model.rollout(images, actions, future_actions[:, :horizon])