GAP icon indicating copy to clipboard operation
GAP copied to clipboard

About part partition strategy

Open ws11249648 opened this issue 8 months ago • 0 comments

Thanks for your patient and timely answer. I have another question.In Model_4part_1st,part partition strategy like this: head_list = torch.Tensor([2,3,20]).long() hand_list = torch.Tensor([4,5,6,7,8,9,10,11,21,22,23,24]).long() foot_list = torch.Tensor([12,13,14,15,16,17,18,19]).long() hip_list = torch.Tensor([0,1,2,12,16]).long() But in Model_4part_1st_bone,part partition strategy like this:head_list = torch.Tensor([2,3]).long() hand_list = torch.Tensor([4,5,6,7,8,9,10,11,20,22,23,24]).long() foot_list = torch.Tensor([12,13,14,15,16,17,18,19]).long() hip_list = torch.Tensor([0,1,12,16]).long() I don't know why is different?And can I change the part partition strategy like this: self.head= [2, 3] self.hand = [4, 5, 6, 7, 8, 9, 10, 11, 21, 22, 23, 24] self.foot = [12, 13, 14, 15, 16, 17, 18, 19] self.hip = [0, 1,20] Looking forward to your reply and I would be very grateful.

ws11249648 avatar May 09 '25 03:05 ws11249648