ソースを参照

W&B: Don't log models in evolve operation (#4611)

modifyDataloader
Ayush Chaurasia GitHub 3年前
コミット
11e7c7b48d
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
2個のファイルの変更9行の追加5行の削除
  1. +8
    -4
      utils/loggers/__init__.py
  2. +1
    -1
      utils/loggers/wandb/wandb_utils.py

+ 8
- 4
utils/loggers/__init__.py ファイルの表示

@@ -138,7 +138,11 @@ class Loggers():
if self.wandb:
self.wandb.log({"Results": [wandb.Image(str(f), caption=f.name) for f in files]})
# Calling wandb.log. TODO: Refactor this into WandbLogger.log_model
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()
if not self.opt.evolve:
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)

+ 1
- 1
utils/loggers/wandb/wandb_utils.py ファイルの表示

@@ -112,7 +112,7 @@ class WandbLogger():
https://docs.wandb.com/guides/integrations/yolov5
"""

def __init__(self, opt, run_id, job_type='Training'):
def __init__(self, opt, run_id=None, job_type='Training'):
"""
- Initialize WandbLogger instance
- Upload dataset if opt.upload_dataset is True

読み込み中…
キャンセル
保存