File size: 1,128 Bytes
a036e9d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1fa947d
 
 
 
 
 
 
 
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
---
license: other
library_name: motius
tags:
  - motion-generation
  - text-to-motion
  - humanml3d
---

# MotionCLR HumanML3D for Motius

This repository packages the official MotionCLR HumanML3D checkpoint as a
self-contained Motius artifact. It includes the denoising network, frozen
OpenAI CLIP ViT-B/32 text encoder, HumanML3D statistics, source revision, and
license attribution.

```python
from motius.pipelines.motionclr import MotionCLRPipeline

pipe = MotionCLRPipeline.from_pretrained(
    "ZeyuLing/motius-motionclr-humanml3d",
    device="cuda",
)
motion = pipe.infer_t2m(
    ["a person walks forward and waves"],
    [120],
)[0]
```

The output is an unnormalized `(T, 263)` HumanML3D motion at 20 fps. See the
[Motius MotionCLR model card](https://github.com/ZeyuLing/Motius/blob/main/docs/model_zoo/motionclr.md)
for evaluation and representation details.

MotionCLR remains under the included IDEA License 1.0. Original source:
https://github.com/IDEA-Research/MotionCLR

## Direct Loading

```python
from motius import Pipeline

pipeline = Pipeline.from_pretrained("ZeyuLing/motius-motionclr-humanml3d")
```