YOLOv1-from-scratch icon indicating copy to clipboard operation
YOLOv1-from-scratch copied to clipboard

YOLOv1-from-scratch

Results 4 YOLOv1-from-scratch issues
Sort by recently updated
recently updated
newest added

只能检测一个对象吗?

hi,professor: i test your prepare_data.py, then i found when call image_augument, the label file will be re-write for one line, then i debug it: the code: ![image](https://user-images.githubusercontent.com/34532224/150259698-8e2548e5-feae-4de3-8643-ff646f242492.png) mybe the bbox...

首先感谢谢谢博主的代码,有点小疑惑 loss那块的代码中,计算bbox中不包含物体误差的confidence误差那一项C-iou是不是应该改为C-0。 我看原文里写的 _If no pred object exists in that cell, the confidence scores should be zero._ ```python if iou1 >= iou2: coor_loss = coor_loss + 5 * (torch.sum((self.pred[i, 0:2,...

在编译train文件的时候显示找不到epoch18.pkl 打断点检测发现根本没进入到生成该文件的语句请问怎么回事