We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9e5d9e commit 3f028ebCopy full SHA for 3f028eb
timm/utils/summary.py
@@ -4,6 +4,7 @@
4
"""
5
import csv
6
import os
7
+import wandb
8
from collections import OrderedDict
9
10
train.py
@@ -302,8 +302,8 @@ def main():
302
303
if args.use_wandb:
304
if not args.wandb_project_name:
305
- args.wandb_project_name = args.model
306
- _logger.warning(f"Wandb project name not provided, defaulting to {args.model}")
+ args.wandb_project_name = f'timm_{args.model}'
+ _logger.warning(f"Wandb project name not provided, defaulting to timm_{args.model}")
307
wandb.init(project=args.wandb_project_name, config=args)
308
309
args.prefetcher = not args.no_prefetcher
0 commit comments