Browse Source

Update W&B message to `LOGGER.info()` (#7064)

modifyDataloader
Glenn Jocher GitHub 2 years ago
parent
commit
e278fd63ec
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      utils/loggers/__init__.py

+ 1
- 1
utils/loggers/__init__.py View File

@@ -56,7 +56,7 @@ class Loggers():
if not wandb:
prefix = colorstr('Weights & Biases: ')
s = f"{prefix}run 'pip install wandb' to automatically track and visualize YOLOv5 🚀 runs (RECOMMENDED)"
print(emojis(s))
self.logger.info(emojis(s))

# TensorBoard
s = self.save_dir

Loading…
Cancel
Save