(self, motion)
| 132 | return {'text_feat': text_feat} |
| 133 | |
| 134 | def post_process(self, motion): |
| 135 | assert len(motion.shape) == 3 |
| 136 | if self.use_official_ckpt: |
| 137 | motion[:, :, :4] = motion[:, :, :4] * 25 |
| 138 | return motion |
| 139 | |
| 140 | def forward(self, motion, timesteps, text_feat=None, **kwargs): |
| 141 | """ |