Dtection PPYOLO 模型classwise不出评估结果 也无法infer处图像
收藏
使用PPYOLO训练完成之后 使用eval classwise无法看到模型评估结果,使用infer也无法生成推理图像,但是使用faster rcnn模型都是正常的
并且模型运行过程中,总是出现WARNING: Detect dataset only contains single fileds, return format changed since Paddle 2.1. In Paddle <= 2.0, DataLoader add a list surround output data(e.g. return [data]), and in Paddle >= 2.1, DataLoader return the single filed directly (e.g. return data). For example, in following code:
这个既然没啥影响 能否删掉这个warning 每次训练完一个epoch都一长串,影响观察
0
收藏
请登录后评论
模型使用的是ppyolov2_r50vd_dcn_365e_coco
我记得--classwise好像暂时还不能使用
提个issue???
warning不能删除,但是可以屏蔽:
import warnings
warnings.filterwarnings("ignore")