Views
No views yet
hftrainer.models.motion.motionlab.network and does not
import the original repository at inference time.| Task | Text-to-Motion (T2M), motion generation / editing research stack |
| Bundle / Pipeline | MotionLabBundle / MotionLabPipeline |
| Processed HF artifact | ZeyuLing/hftrainer-motionlab-humanml3d |
| Motion representation | HumanML3D-263 (263-dim, 20 fps, 22 joints) |
| Architecture | RFMotion / MotionFlow Transformer with CLIP text conditioning |
| Paper | MotionLab: Unified Human Motion Generation and Editing via the Motion-Condition-Motion Paradigm, Guo et al., ICCV 2025 - arXiv:2502.02358 |
| Original code | https://github.com/Diouo/MotionLab |
| Artifact | Location | Contents | Status |
|---|---|---|---|
| MotionLab HumanML3D | ZeyuLing/hftrainer-motionlab-humanml3d | motionflow.ckpt + configs/ + Mean.npy / Std.npy + mean_motion.npy / std_motion.npy + model_index.json | public Hub artifact |
| local mirror | checkpoints/baselines/motionlab | same layout | optional local cache |
1from hftrainer.pipelines.motionlab import MotionLabPipeline
2
3pipe = MotionLabPipeline.from_pretrained(
4 "ZeyuLing/hftrainer-motionlab-humanml3d",
5 device="cuda",
6)
7motions = pipe.infer_t2m(
8 ["a person walks forward then sits down"],
9 [120],
10) # list of (T, 263)pipe = MotionLabPipeline.from_pretrained("checkpoints/baselines/motionlab", device="cuda")HumanML3D-263 -> SMPL motion_135 via IK refine-80 -> MotionStreamer-272| Evaluator | R1 up | R2 up | R3 up | FID down | MM down | Div up |
|---|---|---|---|---|---|---|
| MotionStreamer-272 | 0.6367 | 0.7882 | 0.8529 | 25.4469 | 17.9756 | 25.5355 |
| MotionCLIP-135 no-L2 | 0.4807 | 0.6457 | 0.7353 | 102.7770 | 41.5472 | 23.0179 |
| Slide down | Float down | Jitter down | Dynamic down |
|---|---|---|---|
| 2.4231 | 4.0795 | 5.8493 | 24.3519 |
hftrainer.models.motion.motionlab.network.rfmotion.* namespace into the
vendored hftrainer namespace before model construction.demo, matching the validated qualitative
HumanML3D T2M setting.