From 36bc317f338de366145be0e650a4e9f1f8fb3f8c Mon Sep 17 00:00:00 2001 From: Ayush Chaurasia Date: Tue, 30 Mar 2021 09:31:18 +0000 Subject: [PATCH] Set resume flag to false --- utils/wandb_logging/log_dataset.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/wandb_logging/log_dataset.py b/utils/wandb_logging/log_dataset.py index 97e68425cddd..0ccb8735bd42 100644 --- a/utils/wandb_logging/log_dataset.py +++ b/utils/wandb_logging/log_dataset.py @@ -21,5 +21,6 @@ def create_dataset_artifact(opt): parser.add_argument('--single-cls', action='store_true', help='train as single-class dataset') parser.add_argument('--project', type=str, default='YOLOv5', help='name of W&B Project') opt = parser.parse_args() - + opt.resume = False # Explicitly disallow resume check for dataset upload Job + create_dataset_artifact(opt)