Hydra *.yml extension deprecated fix (#34)

This commit is contained in:
Glenn Jocher
2022-11-07 00:52:08 +01:00
committed by GitHub
parent 6fe8bead35
commit e4f7458d90
3 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ from ultralytics.yolo.utils import LOGGER, ROOT
from ultralytics.yolo.utils.files import increment_path, save_yaml
from ultralytics.yolo.utils.modeling import get_model
DEFAULT_CONFIG = ROOT / "yolo/utils/configs/default.yml"
DEFAULT_CONFIG = ROOT / "yolo/utils/configs/default.yaml"
class BaseTrainer: