CoolFace
Modelpublic

braindecode/EMG2Pose-emg2pose-tracking

sourceHugging Facecc-by-nc-sa-4.0updated 24d agoView on Hugging Face
0likes26downloads
Model Card

emg2pose — emg2pose Tracking baseline

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

python
from braindecode.models import VEMG2Pose

model = VEMG2Pose.from_pretrained("braindecode/EMG2Pose-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="mlp", parameterization="position". The stateless MLP decoder reads the pose out directly at each step, conditioned on the previous pose. Call model(x, y0); 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