From c15030f76a8fc07a72134e5f3e79ca588b08ea37 Mon Sep 17 00:00:00 2001 From: "xiaoke@ivgsz_171" Date: Tue, 7 Feb 2023 16:02:02 +0800 Subject: [PATCH] comment debug print --- easymocap/multistage/base_ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easymocap/multistage/base_ops.py b/easymocap/multistage/base_ops.py index f49b6db..ae40a8b 100644 --- a/easymocap/multistage/base_ops.py +++ b/easymocap/multistage/base_ops.py @@ -33,7 +33,7 @@ class SkipPoses(BeforeAfterBase): def before(self, body_params): poses = body_params['poses'] poses_copy = torch.zeros_like(poses) - print(poses.shape) + # print(poses.shape) poses_copy[..., self.copy_index] = poses[..., self.copy_index] body_params['poses'] = poses_copy return body_params \ No newline at end of file