vemg2pose โ€” emg2pose Tracking baseline

Meta's released tracking_vemg2pose.ckpt from the emg2pose benchmark, rehosted with braindecode's parameter names:

from braindecode.models import VEMG2Pose

model = VEMG2Pose.from_pretrained("braindecode/VEMG2Pose-emg2pose-tracking")

16-channel sEMG at 2 kHz in, 20 joint angles per sample out. The encoder uses valid convolutions and consumes a left context of 1790 samples, so windows must be longer than that; the paper trains on 11,790 (10,000 + 1790).

Configuration

decoder="lstm", parameterization="velocity". The recurrent decoder emits one velocity per joint, integrated from a supplied initial pose. Call model(x, y0); this checkpoint was trained with the ground-truth initial pose.

Provenance

Not retrained โ€” the authors' checkpoint with parameter names rewritten. Loaded into braindecode.models.VEMG2Pose and run against the reference emg2pose.pose_modules implementation on the same input, the outputs are bit-identical (max absolute difference 0.0), with all 68 tensors mapped.

License

Weights are Meta's, under CC BY-NC-SA 4.0 (non-commercial, share-alike), carried over unchanged. The UmeTrack hand model behind the labels is CC BY-NC 4.0.

  • Salter et al. (2024), emg2pose, NeurIPS Datasets and Benchmarks. arXiv:2412.02725
Downloads last month
12
Safetensors
Model size
5.97M params
Tensor type
F32
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Paper for braindecode/VEMG2Pose-emg2pose-tracking