Browse Source

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

* fix dpp with wandb disabled

* PyCharm reformat

Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
modifyDataloader
Ayush Chaurasia GitHub 3 years ago
parent
commit
d0bfeb3980
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 10 deletions
  1. +7
    -0
      utils/loggers/__init__.py
  2. +0
    -10
      utils/loggers/wandb/wandb_utils.py

+ 7
- 0
utils/loggers/__init__.py View File

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


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



+ 0
- 10
utils/loggers/wandb/wandb_utils.py View File

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://'





Loading…
Cancel
Save