YOLOV5+swin-transformer出现的问题

YOLOV5+swin-transformer出现的问题
提示:这里简述项目相关背景:
YOLOV5+swin-transformer出现的问题


问题描述

提示:这里描述项目中遇到的问题:
1.TypeError: init() missing 1 required positional argument: ‘c2’
2.TypeError: init() takes from 3 to 7 positional arguments but 8 were given
3.NameError: name ‘window_partition’ is not defined
4.TypeError: transpose() received an invalid combination of arguments - got (list), but expected one of: * (int dim0, int dim1) * (name dim0, name dim1)
5.NameError: name ‘F’ is not defined

原因分析:

提示:这里填写问题的分析:

我是个菜菜菜菜鸡,我不知道啥原因,只是记录一下解决方法。


解决方案:

提示:这里填写该问题的具体解决方案:
1.在这两处添加C3STRYOLOV5+swin-transformer出现的问题_第1张图片2.去掉一个c2YOLOV5+swin-transformer出现的问题_第2张图片

3.定义函数window_partitionYOLOV5+swin-transformer出现的问题_第3张图片4. 用x.permute([0,1,2,3,4,5]) 替换x.transpose([0,1,2,3,4,5])

5.YOLOV5+swin-transformer出现的问题_第4张图片

你可能感兴趣的:(python,开发语言,目标检测)