Are you sure you want to delete this access key?
comments | description | keywords |
---|---|---|
true | Explore Ultralytics callbacks for training, validation, exporting, and prediction. Learn how to use and customize them for your ML models. | Ultralytics, callbacks, training, validation, export, prediction, ML models, YOLOv8, Python, machine learning |
Ultralytics framework supports callbacks as entry points in strategic stages of train, val, export, and predict modes. Each callback accepts a Trainer
, Validator
, or Predictor
object depending on the operation type. All properties of these objects can be found in Reference section of the docs.
Watch: Mastering Ultralytics YOLOv8: Callbacks
In this example, we want to return the original frame with each result object. Here's how we can do that
from ultralytics import YOLO
def on_predict_batch_end(predictor):
"""Handle prediction batch end by combining results with corresponding frames; modifies predictor results."""
_, image, _, _ = predictor.batch
# Ensure that image is a list
image = image if isinstance(image, list) else [image]
# Combine the prediction results with the corresponding frames
predictor.results = zip(predictor.results, image)
# Create a YOLO model instance
model = YOLO("yolov8n.pt")
# Add the custom callback to the model
model.add_callback("on_predict_batch_end", on_predict_batch_end)
# Iterate through the results and frames
for result, frame in model.predict(): # or model.track()
pass
Here are all supported callbacks. See callbacks source code for additional details.
Callback | Description |
---|---|
on_pretrain_routine_start |
Triggered at the beginning of pre-training routine |
on_pretrain_routine_end |
Triggered at the end of pre-training routine |
on_train_start |
Triggered when the training starts |
on_train_epoch_start |
Triggered at the start of each training epoch |
on_train_batch_start |
Triggered at the start of each training batch |
optimizer_step |
Triggered during the optimizer step |
on_before_zero_grad |
Triggered before gradients are zeroed |
on_train_batch_end |
Triggered at the end of each training batch |
on_train_epoch_end |
Triggered at the end of each training epoch |
on_fit_epoch_end |
Triggered at the end of each fit epoch |
on_model_save |
Triggered when the model is saved |
on_train_end |
Triggered when the training process ends |
on_params_update |
Triggered when model parameters are updated |
teardown |
Triggered when the training process is being cleaned up |
Callback | Description |
---|---|
on_val_start |
Triggered when the validation starts |
on_val_batch_start |
Triggered at the start of each validation batch |
on_val_batch_end |
Triggered at the end of each validation batch |
on_val_end |
Triggered when the validation ends |
Callback | Description |
---|---|
on_predict_start |
Triggered when the prediction process starts |
on_predict_batch_start |
Triggered at the start of each prediction batch |
on_predict_postprocess_end |
Triggered at the end of prediction postprocessing |
on_predict_batch_end |
Triggered at the end of each prediction batch |
on_predict_end |
Triggered when the prediction process ends |
Callback | Description |
---|---|
on_export_start |
Triggered when the export process starts |
on_export_end |
Triggered when the export process ends |
Ultralytics callbacks are specialized entry points triggered during key stages of model operations like training, validation, exporting, and prediction. These callbacks allow for custom functionality at specific points in the process, enabling enhancements and modifications to the workflow. Each callback accepts a Trainer
, Validator
, or Predictor
object, depending on the operation type. For detailed properties of these objects, refer to the Reference section.
To use a callback, you can define a function and then add it to the model with the add_callback
method. Here's an example of how to return additional information during prediction:
from ultralytics import YOLO
def on_predict_batch_end(predictor):
"""Handle prediction batch end by combining results with corresponding frames; modifies predictor results."""
_, image, _, _ = predictor.batch
image = image if isinstance(image, list) else [image]
predictor.results = zip(predictor.results, image)
model = YOLO("yolov8n.pt")
model.add_callback("on_predict_batch_end", on_predict_batch_end)
for result, frame in model.predict():
pass
To customize your Ultralytics training routine using callbacks, you can inject your logic at specific stages of the training process. Ultralytics YOLO provides a variety of training callbacks such as on_train_start
, on_train_end
, and on_train_batch_end
. These allow you to add custom metrics, processing, or logging.
Here's an example of how to log additional metrics at the end of each training epoch:
from ultralytics import YOLO
def on_train_epoch_end(trainer):
"""Custom logic for additional metrics logging at the end of each training epoch."""
additional_metric = compute_additional_metric(trainer)
trainer.log({"additional_metric": additional_metric})
model = YOLO("yolov8n.pt")
model.add_callback("on_train_epoch_end", on_train_epoch_end)
model.train(data="coco.yaml", epochs=10)
Refer to the Training Guide for more details on how to effectively use training callbacks.
Using callbacks during validation in Ultralytics YOLO can enhance model evaluation by allowing custom processing, logging, or metrics calculation. Callbacks such as on_val_start
, on_val_batch_end
, and on_val_end
provide entry points to inject custom logic, ensuring detailed and comprehensive validation processes.
For instance, you might want to log additional validation metrics or save intermediate results for further analysis. Here's an example of how to log custom metrics at the end of validation:
from ultralytics import YOLO
def on_val_end(validator):
"""Log custom metrics at end of validation."""
custom_metric = compute_custom_metric(validator)
validator.log({"custom_metric": custom_metric})
model = YOLO("yolov8n.pt")
model.add_callback("on_val_end", on_val_end)
model.val(data="coco.yaml")
Check out the Validation Guide for further insights on incorporating callbacks into your validation process.
To attach a custom callback for the prediction mode in Ultralytics YOLO, you define a callback function and register it with the prediction process. Common prediction callbacks include on_predict_start
, on_predict_batch_end
, and on_predict_end
. These allow for modification of prediction outputs and integration of additional functionalities like data logging or result transformation.
Here is an example where a custom callback is used to log predictions:
from ultralytics import YOLO
def on_predict_end(predictor):
"""Log predictions at the end of prediction."""
for result in predictor.results:
log_prediction(result)
model = YOLO("yolov8n.pt")
model.add_callback("on_predict_end", on_predict_end)
results = model.predict(source="image.jpg")
For more comprehensive usage, refer to the Prediction Guide which includes detailed instructions and additional customization options.
Ultralytics YOLO supports various practical implementations of callbacks to enhance and customize different phases like training, validation, and prediction. Some practical examples include:
Example: Combining frames with prediction results during prediction using on_predict_batch_end
:
from ultralytics import YOLO
def on_predict_batch_end(predictor):
"""Combine prediction results with frames."""
_, image, _, _ = predictor.batch
image = image if isinstance(image, list) else [image]
predictor.results = zip(predictor.results, image)
model = YOLO("yolov8n.pt")
model.add_callback("on_predict_batch_end", on_predict_batch_end)
for result, frame in model.predict():
pass
Explore the Complete Callback Reference to find more options and examples.
Press p or to see the previous file or, n or to see the next file
Are you sure you want to delete this access key?
Are you sure you want to delete this access key?
Are you sure you want to delete this access key?
Are you sure you want to delete this access key?