File size: 2,856 Bytes
2bb548b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
license: mit
task_categories:
  - other
tags:
  - motion-generation
  - diffusion-models
  - cross-skeleton
  - retargeting
  - anonymous-submission
size_categories:
  - 1K<n<10K
---

# anytop-checkpoints

Pre-trained checkpoints accompanying the anonymous NeurIPS 2026 submission
**"Why Cross-Skeleton Retargeting Is Non-Identifiable: Structural Limits of
Generative Motion Models"**.

This repository contains a single tarball, `anytop-checkpoints.tar.gz`
(6.5 GB compressed, 7.2 GB extracted), bundling the trained model weights
for the 14-method comparison reported in the paper.

## Contents

After extraction (`tar -xzvf anytop-checkpoints.tar.gz`):

```
anytop-checkpoints/
  README.md                       (per-method usage notes)
  anytop_v5/                      AnyTop transductive (model000175000.pt, 34 MB)
  ace_primary_70/                 ACE-T transductive (ckpt_final.pt, 83 MB)
  ace_inductive_60/               ACE-I inductive (ckpt_final.pt, 83 MB)
  moreflow_primary_70/            MoReFlow-T (ckpt_final.pt, 79 MB)
  moreflow_inductive_60/          MoReFlow-I (ckpt_final.pt, 79 MB)
  anchor_label_flow/              AL-Flow (ckpt_final.pt, 86 MB)
  anchor_label_flow_src/          AL-Flow-Src (ckpt_final.pt, 88 MB)
  anchor_label_flow_src_g/        AL-Flow-Src-G (ckpt_final.pt, 87 MB)
  dpg_sb_v3/                      DPG-SB-v3 (final.pt 62 MB + z_stats.pt)
  moreflow_vqvae/                 71 per-skeleton VQ-VAE encoders (~91 MB each)
                                  Required for ACE / MoReFlow / DPG-SB-v3 inference
  moreflow_caches/                Pre-extracted MoReFlow latents
                                  (only required to retrain DPG-SB-v3 from scratch)
```

## Verification

```
SHA-256: fc15f536510014a7bb953aa62cd24358de6af11f0d92f0f8360e2ec44b8251e2
```

```bash
sha256sum -c <<< "fc15f536510014a7bb953aa62cd24358de6af11f0d92f0f8360e2ec44b8251e2  anytop-checkpoints.tar.gz"
```

## How to use

The companion code repository contains training scripts, evaluation runners,
and the SIF metric implementation. After downloading and extracting this
tarball into the code repo's `save/` directory, every per-method invocation
in the code repo's `REPRODUCE.md` § 4 will work without retraining.

```bash
# From the code repo root:
mkdir -p save
tar -xzvf anytop-checkpoints.tar.gz
mv anytop-checkpoints/* save/
rmdir anytop-checkpoints

# Verify with one method:
python -m eval.baselines.run_anytop_v5 \
    --ckpt save/anytop_v5/model000175000.pt \
    --manifest eval/benchmark_v3/queries_sif/manifest.json \
    --output_dir results/anytop_sif
```

## License

MIT, matching the upstream AnyTop release.

## Anonymity

Every `args.json` file in the package has been swept for personal paths,
author names, and W&B entity strings. Checkpoint binaries (`*.pt`) contain
only PyTorch model and optimiser state.