Procházet zdrojové kódy

Flush callbacks when on `--evolve` (#6374)

* log best.pt metrics at train end

* update

* Update __init__.py

* flush callbacks when using evolve

Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
modifyDataloader
Ayush Chaurasia GitHub před 2 roky
rodič
revize
9bcc32a5bf
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
2 změnil soubory, kde provedl 2 přidání a 5 odebrání
  1. +1
    -1
      train.py
  2. +1
    -4
      utils/loggers/__init__.py

+ 1
- 1
train.py Zobrazit soubor

@@ -612,7 +612,7 @@ def main(opt, callbacks=Callbacks()):

# Train mutation
results = train(hyp.copy(), opt, device, callbacks)
callbacks = Callbacks()
# Write mutation results
print_mutation(results, hyp.copy(), save_dir, opt.bucket)


+ 1
- 4
utils/loggers/__init__.py Zobrazit soubor

@@ -159,10 +159,7 @@ class Loggers():
wandb.log_artifact(str(best if best.exists() else last), type='model',
name='run_' + self.wandb.wandb_run.id + '_model',
aliases=['latest', 'best', 'stripped'])
self.wandb.finish_run()
else:
self.wandb.finish_run()
self.wandb = WandbLogger(self.opt)
self.wandb.finish_run()

def on_params_update(self, params):
# Update hyperparams or configs of the experiment

Načítá se…
Zrušit
Uložit