Bouseng
Bouseng
> 小模型不适合这么重的数据增强 感谢
> > ```python > > if self.load_mosaic and not isval: > > img4, labels4, bbox4 = load_mosaic(self, idx) > > meta['img_info']['height'] = img4.shape[0] > > meta['img_info']['width'] = img4.shape[1] > >...
``` export PYTHONPATH=$PYTHONPATH:./nanodet ```
> @Rokuki Can you tell how to write the function bbox2xyxy()? Thx. @Anleeno-Xu 不好意思,才看到 ```python def bbox2xyxy(x, large_img, small_img): y = x.clone() if isinstance(x, torch.Tensor) else np.copy(x) y[:, 0] =...