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