Ayush Chaurasia
commited on
Commit
•
2a28ef3
1
Parent(s):
1b475c1
Set resume flag to false (#2657)
Browse files
utils/wandb_logging/log_dataset.py
CHANGED
@@ -21,5 +21,6 @@ if __name__ == '__main__':
|
|
21 |
parser.add_argument('--single-cls', action='store_true', help='train as single-class dataset')
|
22 |
parser.add_argument('--project', type=str, default='YOLOv5', help='name of W&B Project')
|
23 |
opt = parser.parse_args()
|
24 |
-
|
|
|
25 |
create_dataset_artifact(opt)
|
|
|
21 |
parser.add_argument('--single-cls', action='store_true', help='train as single-class dataset')
|
22 |
parser.add_argument('--project', type=str, default='YOLOv5', help='name of W&B Project')
|
23 |
opt = parser.parse_args()
|
24 |
+
opt.resume = False # Explicitly disallow resume check for dataset upload Job
|
25 |
+
|
26 |
create_dataset_artifact(opt)
|