ultralytics 8.0.14
Hydra removal fixes and cleanup (#542)
Co-authored-by: ayush chaurasia <ayush.chaurarsia@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Kamlesh Kumar <patelkamleshpatel364@gmail.com>
This commit is contained in:
@ -26,7 +26,7 @@ def on_pretrain_routine_start(trainer):
|
||||
output_uri=True,
|
||||
reuse_last_task_id=False,
|
||||
auto_connect_frameworks={'pytorch': False})
|
||||
task.connect(dict(trainer.args), name='General')
|
||||
task.connect(vars(trainer.args), name='General')
|
||||
|
||||
|
||||
def on_train_epoch_end(trainer):
|
||||
|
@ -11,7 +11,7 @@ except (ModuleNotFoundError, ImportError):
|
||||
|
||||
def on_pretrain_routine_start(trainer):
|
||||
experiment = comet_ml.Experiment(project_name=trainer.args.project or "YOLOv8")
|
||||
experiment.log_parameters(dict(trainer.args))
|
||||
experiment.log_parameters(vars(trainer.args))
|
||||
|
||||
|
||||
def on_train_epoch_end(trainer):
|
||||
|
Reference in New Issue
Block a user