Open HeChengHui opened 1 year ago
The error message you've encountered indicates an ImportError while trying to import the inference_top_down_pose_model
from the mmpose.apis
module. The error suggests that there's an incompatibility between the version of mmpose
you have installed and the code you are running. To address this issue, follow these steps:
Downgrade mmpose
to version 0.29:
To match the requirements of your code, you should downgrade the mmpose
package to version 0.29.
Downgrade PyTorch:
Ensure that your PyTorch version is compatible with mmpose
0.29.
By downgrading both mmpose
and PyTorch to the specified versions, you should resolve the ImportError issue.
Please advice on the above error