File size: 2,660 Bytes
316a030 64a5e3b 316a030 | 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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | ---
library_name: pytorch
tags:
- motion
- rvq
- vector-quantization
- human-motion
- safetensors
- humanML
- motion-reconstructor
license: cc-by-nc-4.0
datasets:
- Wojtekb30/HumanML3D-500ms-FPP-descriptions-CoTs-1
---
# Motion RVQ (Move Reconstruction)
This model uses Residual Vector Quantization (RVQ) to reconstruct motion represented as 263-dimensional frame vectors.
It is a custom PyTorch model (not a Transformers `AutoModel`) and is loaded from `safetensors` with `rvq_model.py`.

## Model Summary
- Architecture: encoder -> 4-level RVQ -> decoder
- Input shape: `(T, 263)` per sequence (frame-major)
- Training window: 100 frames (with crop/pad in dataset loader)
- Output: reconstructed motion sequence in the same 263-dim representation
## Repository Files
- `motion_rvq_weights.safetensors` - main published checkpoint
- `config.json` - model configuration metadata
- `rvq_model.py` - model architecture (`MotionRVQ_VAE`)
- `TestRVQ.py` - inference + 3-panel visualization
- `TrainRVQ.py` - training script
- `rvq_humanml_dataset.py` - training dataset loader
- `Mean.npy`, `Std.npy` - normalization statistics
- `000001.npy`, `000012.npy` - sample motion files
`motion_rvq_weights.pth` can be treated as a legacy artifact; code uses `motion_rvq_weights.safetensors`.
## Install
```bash
pip install torch safetensors numpy matplotlib
```
## Inference
Run the provided visualization script:
```bash
python TestRVQ.py
```
By default, `TestRVQ.py` uses `000001.npy`. You can change `FILE_TO_TEST` in `TestRVQ.py` to another sequence.
Minimal loading example:
```python
from pathlib import Path
import torch
from safetensors.torch import load_file
from rvq_model import MotionRVQ_VAE
base = Path(".")
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
model = MotionRVQ_VAE().to(device)
state_dict = load_file(str(base / "motion_rvq_weights.safetensors"), device=str(device))
model.load_state_dict(state_dict)
model.eval()
```
## Training From Scratch
Expected layout:
```text
rvq/
TrainRVQ.py
rvq_model.py
rvq_humanml_dataset.py
Mean.npy
Std.npy
new_joint_vecs/
*.npy
```
Run training:
```bash
python TrainRVQ.py
```
Output checkpoint:
- `motion_rvq_weights.safetensors`
## Limitations
- This model reconstructs motion vectors; it is not a text-to-motion generator.
- Input format must match the same 263-dim representation and normalization scheme used during training. |