Unverified 提交 d0bfeb39 authored 作者: Ayush Chaurasia's avatar Ayush Chaurasia 提交者: GitHub

W&B: fix DDP with wandb disabled (#5163)

* fix dpp with wandb disabled * PyCharm reformat Co-authored-by: 's avatarGlenn Jocher <glenn.jocher@ultralytics.com>
上级 a3469269
...@@ -3,9 +3,11 @@ ...@@ -3,9 +3,11 @@
Logging utils Logging utils
""" """
import os
import warnings import warnings
from threading import Thread from threading import Thread
import pkg_resources as pkg
import torch import torch
from torch.utils.tensorboard import SummaryWriter from torch.utils.tensorboard import SummaryWriter
...@@ -15,11 +17,16 @@ from utils.plots import plot_images, plot_results ...@@ -15,11 +17,16 @@ from utils.plots import plot_images, plot_results
from utils.torch_utils import de_parallel from utils.torch_utils import de_parallel
LOGGERS = ('csv', 'tb', 'wandb') # text-file, TensorBoard, Weights & Biases LOGGERS = ('csv', 'tb', 'wandb') # text-file, TensorBoard, Weights & Biases
RANK = int(os.getenv('RANK', -1))
try: try:
import wandb import wandb
assert hasattr(wandb, '__version__') # verify package import not local dir assert hasattr(wandb, '__version__') # verify package import not local dir
if pkg.parse_version(wandb.__version__) >= pkg.parse_version('0.12.2') and RANK in [0, -1]:
wandb_login_success = wandb.login(timeout=30)
if not wandb_login_success:
wandb = None
except (ImportError, AssertionError): except (ImportError, AssertionError):
wandb = None wandb = None
......
...@@ -20,16 +20,6 @@ from utils.datasets import img2label_paths ...@@ -20,16 +20,6 @@ from utils.datasets import img2label_paths
from utils.general import check_dataset, check_file from utils.general import check_dataset, check_file
RANK = int(os.getenv('RANK', -1)) RANK = int(os.getenv('RANK', -1))
try:
import wandb
assert hasattr(wandb, '__version__') # verify package import not local dir
if pkg.parse_version(wandb.__version__) >= pkg.parse_version('0.12.2') and RANK in [0, -1]:
wandb.login(timeout=30)
except (ImportError, AssertionError):
wandb = None
WANDB_ARTIFACT_PREFIX = 'wandb-artifact://' WANDB_ARTIFACT_PREFIX = 'wandb-artifact://'
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论