How to use from the
Use from the
Transformers library
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("google/tapnet", dtype="auto")
Quick Links

Tracking Any Point (TAP) β€” Model Checkpoints

Official pre-trained checkpoints for the Tracking Any Point (TAP) family of models from Google DeepMind & Google Research.

[GitHub] [TAP-Vid] [TAPIR] [RoboTAP] [Blog Post] [BootsTAP] [TAPVid-3D] [TAPNext] [TRAJAN] [TAPNext++]

Model Overview

The TAP model family addresses the task of tracking any point on any solid physical surface across video frames. Given a query point on one frame, the model predicts where that point moves to on every other frame, along with an occlusion/visibility estimate.

Model Key Contribution
TAP-Net Baseline model introduced with the TAP-Vid benchmark
TAPIR Two-stage matching + refinement; large accuracy gains over TAP-Net
BootsTAPIR TAPIR + bootstrapped self-training on unlabeled video
TAPNext / BootsTAPNext Next-token-prediction formulation; fastest and simplest tracker
TAPNext++ Fine-tuned BootsTAPNext with 40Γ— longer stable tracking, occlusion handling, and re-detection
TRAJAN Point trajectory autoencoder for motion representation learning

Checkpoints

All checkpoints are released under the Apache License 2.0.

TAPNext++ (latest)

File Resolution Framework DAVIS First (AJ) Kinetics First (AJ) RoboTAP First (AJ)
tapnextpp_ckpt.pt 256Γ—256 PyTorch 65.6% 53.9% 61.1%
tapnextpp_512.ckpt 512Γ—512 PyTorch 67.0% β€” β€”

TAPNext / BootsTAPNext

File Resolution Framework DAVIS First (AJ)
bootstapnext.pth 256Γ—256 PyTorch 65.25%
bootstapnext_ckpt.npz 256Γ—256 Jax 65.25%

TAPIR & BootsTAPIR

File Mode Resolution Framework DAVIS First (AJ)
tapir_checkpoint_panning.pt Offline 256Γ—256 PyTorch 58.5%
tapir_checkpoint_panning.npy Offline 256Γ—256 Jax 58.5%
causal_tapir_checkpoint.npy Online 256Γ—256 Jax 56.2%
bootstapir_checkpoint_v2.pt Offline 256Γ—256 + 512Γ—512 PyTorch 62.4%
bootstapir_checkpoint_v2.npy Offline 256Γ—256 + 512Γ—512 Jax 62.4%
causal_bootstapir_checkpoint.pt Online 256Γ—256 + 512Γ—512 PyTorch 59.7%
causal_bootstapir_checkpoint.npy Online 256Γ—256 + 512Γ—512 Jax 59.7%

Other

File Model Framework DAVIS First (AJ)
checkpoint.npy TAP-Net (baseline) Jax 33.0%
track_autoencoder_ckpt.npz TRAJAN Jax β€”

Quick Start

TAPNext++ (PyTorch)

import torch
from tapnet.tapnextpp.votsp2026.model import TAPNextPP

# Load model (handles checkpoint parsing internally)
model = TAPNextPP.from_checkpoint(
    "tapnextpp_ckpt.pt",       # or "tapnextpp_512.ckpt" for 512Γ—512
    device="cuda",
    input_resolution=256,      # use 512 for the 512Γ—512 checkpoint
)

# Online tracking: first frame with query points
positions, visible, state = model.track_frame(frame_bgr, query_points_xy=query_xy)

# Subsequent frames
for frame in subsequent_frames:
    positions, visible, state = model.track_frame(frame, state=state)

See the TAPNext++ Colab for a complete demo.

BootsTAPIR (PyTorch)

import torch
from tapnet.torch import tapir_model

# Load model
model = tapir_model.TAPIR(pyramid_level=1)
model.load_state_dict(torch.load("bootstapir_checkpoint_v2.pt"))
model = model.to(device)
model.eval()

See the PyTorch TAPIR Colab for a complete demo.

Installation

pip install "tapnet[torch] @ git+https://github.com/google-deepmind/tapnet.git"

Citation

If you use these models, please cite the relevant papers:

TAP-Vid (NeurIPS 2022)
@article{doersch2022tap,
  title={{TAP}-Vid: A Benchmark for Tracking Any Point in a Video},
  author={Doersch, Carl and Gupta, Ankush and Markeeva, Larisa and Recasens, Adria and Smaira, Lucas and Aytar, Yusuf and Carreira, Joao and Zisserman, Andrew and Yang, Yi},
  journal={Advances in Neural Information Processing Systems},
  volume={35},
  pages={13610--13626},
  year={2022}
}
TAPIR (ICCV 2023)
@inproceedings{doersch2023tapir,
  title={{TAPIR}: Tracking any point with per-frame initialization and temporal refinement},
  author={Doersch, Carl and Yang, Yi and Vecerik, Mel and Gokay, Dilara and Gupta, Ankush and Aytar, Yusuf and Carreira, Joao and Zisserman, Andrew},
  booktitle={Proceedings of the IEEE/CVF International Conference on Computer Vision},
  pages={10061--10072},
  year={2023}
}
RoboTAP (ICRA 2024)
@article{vecerik2023robotap,
  title={{RoboTAP}: Tracking arbitrary points for few-shot visual imitation},
  author={Vecerik, Mel and Doersch, Carl and Yang, Yi and Davchev, Todor and Aytar, Yusuf and Zhou, Guangyao and Hadsell, Raia and Agapito, Lourdes and Scholz, Jon},
  journal={International Conference on Robotics and Automation},
  pages={5397--5403},
  year={2024}
}
BootsTAP (ACCV 2024)
@article{doersch2024bootstap,
  title={{BootsTAP}: Bootstrapped Training for Tracking-Any-Point},
  author={Doersch, Carl and Luc, Pauline and Yang, Yi and Gokay, Dilara and Koppula, Skanda and Gupta, Ankush and Heyward, Joseph and Rocco, Ignacio and Goroshin, Ross and Carreira, Jo{\~a}o and Zisserman, Andrew},
  journal={Asian Conference on Computer Vision},
  year={2024}
}
TAPVid-3D (NeurIPS 2024)
@article{koppula2024tapvid,
  title={{TAPVid}-{3D}: A Benchmark for Tracking Any Point in {3D}},
  author={Koppula, Skanda and Rocco, Ignacio and Yang, Yi and Heyward, Joe and Carreira, Jo{\~a}o and Zisserman, Andrew and Brostow, Gabriel and Doersch, Carl},
  journal={Advances in Neural Information Processing Systems},
  year={2024}
}
TAPNext (ICCV 2025)
@inproceedings{zholus2025tapnext,
  title={Tapnext: Tracking any point (tap) as next token prediction},
  author={Zholus, Artem and Doersch, Carl and Yang, Yi and Koppula, Skanda and Patraucean, Viorica and He, Xu Owen and Rocco, Ignacio and Sajjadi, Mehdi SM and Chandar, Sarath and Goroshin, Ross},
  booktitle={Proceedings of the IEEE/CVF International Conference on Computer Vision},
  pages={9693--9703},
  year={2025}
}
TRAJAN (2025)
@article{allen2025trajan,
  title={Direct Motion Models for Assessing Generated Videos},
  author={Allen, Kelsey and Doersch, Carl and Zhou, Guangyao and Suhail, Mohammed and Driess, Danny and Rocco, Ignacio and Rubanova, Yulia and Kipf, Thomas and Sajjadi, Mehdi S. M. and Murphy, Kevin and Carreira, Joao and van Steenkiste, Sjoerd},
  journal={arXiv preprint},
  year={2025}
}
TAPNext++ (CVPR 2026 Findings)
@InProceedings{Jung_2026_CVPR,
  author    = {Jung, Sebastian and Zholus, Artem and Sundermeyer, Martin and Doersch, Carl
               and Goroshin, Ross and Tan, David Joseph and Chandar, Sarath
               and Triebel, Rudolph and Tombari, Federico},
  title     = {TAPNext++: What's Next for Tracking Any Point (TAP)?},
  booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) Findings},
  month     = {June},
  year      = {2026},
  pages     = {8429-8438}
}

License

Copyright 2022-2026 Google LLC

All software and model checkpoints in this repository are licensed under the Apache License, Version 2.0.

This is not an official Google product.

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Space using google/tapnet 1