(self,
motion,
motion_length=None,
motion_mask=None,
**kwargs)
| 275 | self.load_pretrained(init_cfg['checkpoint']) |
| 276 | |
| 277 | def encode_motion(self, |
| 278 | motion, |
| 279 | motion_length=None, |
| 280 | motion_mask=None, |
| 281 | **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) |
nothing calls this directly
no outgoing calls
no test coverage detected