Views
No views yet
| Paper | arXiv 2603.17993 |
| Project page | https://huajian-zeng.github.io/projects/gmt/ |
| Code | https://github.com/huajian-zeng/gmt |
| Video | YouTube |
| Venue | 3DV 2026 |
| File | Description |
|---|---|
adt.pth | PyTorch checkpoint ({'model_state_dict': ...}) trained on ADT |
val_sequences.txt | List of ADT sequences used for validation |
1from huggingface_hub import hf_hub_download
2import torch
3
4ckpt_path = hf_hub_download(
5 repo_id="huajian-zeng/gmt-adt",
6 filename="adt.pth",
7)
8checkpoint = torch.load(ckpt_path, map_location="cpu")
9# Build the model exactly as in scripts/eval.py and then:
10# model.load_state_dict(checkpoint["model_state_dict"])1git clone https://github.com/huajian-zeng/gmt
2cd gmt
3bash scripts/download_pretrained.sh # now pulls from this HF repo
4bash demo.shdemo.sh lives at huajian-zeng/gmt-adt-cache.1@inproceedings{zeng2026gmt,
2 title = {{GMT}: Goal-Conditioned Multimodal Transformer for 6-DOF Object Trajectory Synthesis in 3D Scenes},
3 author = {Zeng, Huajian and Saroha, Abhishek and Cremers, Daniel and Wang, Xi},
4 booktitle = {International Conference on 3D Vision (3DV)},
5 year = {2026},
6}