在研究MMPose中出现了IndexError: index 6 is out of bounds for axis 1 with size 6的问题
在鼓捣半天后找到了解决方法.
# 指定对应的元信息配置文件
metainfo=dict(from_file='configs/_base_/datasets/custom.py'),
在MMPose的官方文档中,找到了metain的函数用于加载数据集的py文件
在使用这段代码后,终于解决了问题.
在研究MMPose中出现了IndexError: index 6 is out of bounds for axis 1 with size 6的问题
在鼓捣半天后找到了解决方法.
# 指定对应的元信息配置文件
metainfo=dict(from_file='configs/_base_/datasets/custom.py'),
在MMPose的官方文档中,找到了metain的函数用于加载数据集的py文件
在使用这段代码后,终于解决了问题.