mirror of
https://github.com/ultralytics/ultralytics
synced 2026-05-05 22:48:26 +00:00
Clarify hyperparameter tuning limitations in guide (#22513)
Signed-off-by: amm1111 <1490435889@qq.com> Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com> Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
This commit is contained in:
parent
bf44eb1bd1
commit
0d709d84a1
1 changed files with 5 additions and 1 deletions
|
|
@ -106,7 +106,11 @@ The following table lists the default search space parameters for hyperparameter
|
|||
|
||||
## Custom Search Space Example
|
||||
|
||||
Here's how to define a search space and use the `model.tune()` method to utilize the `Tuner` class for hyperparameter tuning of YOLO11n on COCO8 for 30 epochs with an AdamW optimizer and skipping plotting, checkpointing and validation other than on final epoch for faster Tuning.
|
||||
Here's how to define a search space and use the `model.tune()` method to utilize the `Tuner` class for hyperparameter tuning of YOLO11n on COCO8 for 30 epochs with an AdamW optimizer and skipping plotting, checkpointing and validation other than on final epoch for faster Tuning.
|
||||
|
||||
!!! warning
|
||||
|
||||
Note that hyperparameters obtained from quick tuning with a small number of epochs are likely not optimal for full training. The tuning process may, for instance, increase certain loss weights to make the network converge faster within fewer epochs, or reduce the intensity of some image augmentations to improve validation performance under such limited training conditions.
|
||||
|
||||
!!! example
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue