docs: 📝 update hyperlink for hyperparameter tuning in custom trainer guide (#23644)

Signed-off-by: Onuralp SEZER <onuralp@ultralytics.com>
This commit is contained in:
Onuralp SEZER 2026-02-12 12:19:17 +03:00 committed by GitHub
parent 584877e7a0
commit b5659fa8dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -402,7 +402,7 @@ Yes, for simpler customizations, [callbacks](../usage/callbacks.md) are often su
### How do I customize the loss function without subclassing the model?
If your change is simpler (such as adjusting loss gains), you can modify the [hyperparameters](https://www.ultralytics.com/glossary/hyperparameters) directly:
If your change is simpler (such as adjusting loss gains), you can modify the [hyperparameters](https://www.ultralytics.com/glossary/hyperparameter-tuning) directly:
```python
model.train(data="coco8.yaml", box=10.0, cls=1.5, dfl=2.0)