@HaiyuWu1: Locally straightening the latent trajectory can largely reduce the optimization difficulty of world model planning! Sou…

X AI KOLs Following Papers

Summary

The paper proposes locally straightening latent trajectories by maximizing cosine similarity between adjacent velocity vectors to reduce optimization difficulty in world model planning, with experiments on PushT dataset achieving 36% success rate for long-horizon planning.

Locally straightening the latent trajectory can largely reduce the optimization difficulty of world model planning! Sounds confusing? Not sure how to achieve it? Don't worry. After the math derivation, the final implementation is very simple: increasing the cosine similarity between adjacent velocity vectors. L_curv = 1 - cos(v_t, v_(t+1)) Another interesting finding: Applying this loss to patch tokens is more effective than applying it to the CLS token (we are far from fully leveraging the pre-trained model, lol). Since this paper was done before Le-WM, I wonder if anyone has tested this loss on Le-WM? In this paper, long-horizon planning remains quite challenging (i.e., planning horizon: 50, dataset: PushT, best success rate: 36.00%). #WorldModel
Original Article
View Cached Full Text

Cached at: 07/15/26, 03:42 AM

Locally straightening the latent trajectory can largely reduce the optimization difficulty of world model planning!

Sounds confusing? Not sure how to achieve it? Don’t worry.

After the math derivation, the final implementation is very simple: increasing the cosine similarity between adjacent velocity vectors.

L_curv = 1 - cos(v_t, v_(t+1))

Another interesting finding: Applying this loss to patch tokens is more effective than applying it to the CLS token (we are far from fully leveraging the pre-trained model, lol).

Since this paper was done before Le-WM, I wonder if anyone has tested this loss on Le-WM? In this paper, long-horizon planning remains quite challenging (i.e., planning horizon: 50, dataset: PushT, best success rate: 36.00%).

#WorldModel

Similar Articles