File size: 190 Bytes
604e535
 
 
 
 
 
1
2
3
4
5
6
7
"""PlaNet RSSM rollout interface."""


def rollout(model, batch, horizon):
    images, actions, future_actions = batch
    return model.rollout(images, actions, future_actions[:, :horizon])