You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Launching the training code I received the following error:
At first I believed that I could have forgotten to move the keypoints, but a closer inspection revealed the duplicaiton of part of the path. Following this, adding some "print" lines in the src/datasets/handcrop_poseflow.py file I got:
As you can see in the image, sample['path'].replace('mp4', 'kp') already includes the data from previous objects, i.e., self.root_path.replace('mp4', 'kp') and self.join_path.
I believe that this is a typo, as with the following code in line ~107 in src/datasets/handcrop_poseflow.py the kp_path object works fine:
Launching the training code I received the following error:
At first I believed that I could have forgotten to move the keypoints, but a closer inspection revealed the duplicaiton of part of the path. Following this, adding some "print" lines in the
src/datasets/handcrop_poseflow.py
file I got:As you can see in the image,
sample['path'].replace('mp4', 'kp')
already includes the data from previous objects, i.e.,self.root_path.replace('mp4', 'kp')
andself.join_path
.I believe that this is a typo, as with the following code in line ~107 in
src/datasets/handcrop_poseflow.py
thekp_path
object works fine:The text was updated successfully, but these errors were encountered: