Skip to content

Commit

Permalink
Fix incorrect scale description (ultralytics#18303)
Browse files Browse the repository at this point in the history
Signed-off-by: Mohammed Yasin <[email protected]>
Co-authored-by: Glenn Jocher <[email protected]>
  • Loading branch information
Y-T-G and glenn-jocher authored Dec 18, 2024
1 parent 41eb46f commit cdb36b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/en/guides/model-training-tips.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ When it comes to YOLO11, you can easily implement subset training by using the `

Multiscale training is a technique that improves your model's ability to generalize by training it on images of varying sizes. Your model can learn to detect objects at different scales and distances and become more robust.

For example, when you train YOLO11, you can enable multiscale training by setting the `scale` parameter. This parameter adjusts the size of training images by a specified factor, simulating objects at different distances. For example, setting `scale=0.5` will reduce the image size by half, while `scale=2.0` will double it. Configuring this parameter allows your model to experience a variety of image scales and improve its detection capabilities across different object sizes and scenarios.
For example, when you train YOLO11, you can enable multiscale training by setting the `scale` parameter. This parameter adjusts the size of training images by a specified factor, simulating objects at different distances. For example, setting `scale=0.5` randomly zooms training images by a factor between 0.5 and 1.5 during training. Configuring this parameter allows your model to experience a variety of image scales and improve its detection capabilities across different object sizes and scenarios.

### Caching

Expand Down

0 comments on commit cdb36b6

Please sign in to comment.