mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-23 13:34:23 +08:00

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
21 lines
495 B
Python
21 lines
495 B
Python
# Ultralytics YOLO 🚀, AGPL-3.0 license
|
|
|
|
try:
|
|
import ray
|
|
from ray import tune
|
|
from ray.air import session
|
|
except (ImportError, AssertionError):
|
|
tune = None
|
|
|
|
|
|
def on_fit_epoch_end(trainer):
|
|
"""Sends training metrics to Ray Tune at end of each epoch."""
|
|
if ray.tune.is_session_enabled():
|
|
metrics = trainer.metrics
|
|
metrics['epoch'] = trainer.epoch
|
|
session.report(metrics)
|
|
|
|
|
|
callbacks = {
|
|
'on_fit_epoch_end': on_fit_epoch_end, } if tune else {}
|