gpt4 book ai didi

machine-learning - YOLOv3注释应该在调整大小之前完成吗?

转载 作者:行者123 更新时间:2023-11-30 09:04:36 27 4
gpt4 key购买 nike

我即将开始注释我的图像以训练 YOLOv3 模型。在开始之前,我想确保可以在原始图像上创建注释。在训练前调整图像大小后,注释是否会分别改变?或者我应该先调整所有图像的大小然后开始注释?

最佳答案

没关系!您不必担心图像大小。您可以用任何大小注释您的数据集,当您开始训练时,Yolo 将根据网络大小调整训练图像的大小,例如416x416、608x608。

另请注意,在原始存储库中,如果您在 cfg 文件中设置random = 1,则网络大小每 10 次迭代就会更改一次。 random = 1 表示 Yolo 每 10 次迭代改变网络大小,通过在不同分辨率上训练网络来提高精度很有用。

根据 Yolo 论文:

However, since our model only uses convolutional and pooling layers it can be resized on the fly. We want YOLOv2 to be robust to running on images of different sizes so we train this into the model. Instead of fixing the input image size we change the network every few iterations. Every 10 batches our network randomly chooses a new image dimension size. Since our model downsamples by a factor of 32, we pull from the following multiples of 32: {320, 352, ..., 608}. Thus the smallest option is 320 × 320 and the largest is 608 × 608. We resize the network to that dimension and continue training.

但是,如果您使用AlexeyAB 的存储库,调整大小过程将不会保持宽高比 https://github.com/AlexeyAB/darknet/issues/232#issuecomment-336955485

关于machine-learning - YOLOv3注释应该在调整大小之前完成吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55840490/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com