Skip to content

Commit 07d9c7c

Browse files
committed
fix: fix QA
1 parent 5f32b44 commit 07d9c7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

training_and_inference_yolov5/training_and_inference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ It's important to choose the right parameters, as doing otherwise can cause terr
9797
* `--img` (image size): this parameter was probably the one that gave me the most trouble. I initially thought that all images -- if trained with a specific image size -- must always follow this size; however, you don't need to worry about this due to image subsampling and other techniques that are implemented to avoid this issue. This value needs to be the maximum value between the height and width of the pictures, averaged across the dataset.
9898
* `--save_period`: specifies how often the model should save a copy of the state. For example, if I set this to 25, it will create a YOLOv5 checkpoint that I can use every 25 trained epochs.
9999

100-
> **Note**: If I have 1,000 images with an average width of 1920 and height of 1080, I'll probably create a model of image size = 640, and subsample my images. If I have issues with detections, perhaps I'll create a model with a higher image size value, but training time will ramp up, and inference will also require more computing power.
100+
> **Note**: if I have 1,000 images with an average width of 1920 and height of 1080, I'll probably create a model of image size = 640, and subsample my images. If I have issues with detections, perhaps I'll create a model with a higher image size value, but training time will ramp up, and inference will also require more computing power.
101101
102102

103103
### Which YOLOv5 checkpoint to choose from?

0 commit comments

Comments
 (0)