(self, text, token=None, device=None, **kwargs)
| 282 | return self.motion_encoder(motion, motion_length, motion_mask) |
| 283 | |
| 284 | def encode_text(self, text, token=None, device=None, **kwargs): |
| 285 | return self.text_encoder(text=text, token=token, device=device) |
| 286 | |
| 287 | def load_pretrained(self, ckpt_path): |
| 288 | self.motion_encoder.load_pretrained(ckpt_path) |
nothing calls this directly
no outgoing calls
no test coverage detected