From 4f64de609d79781e41a744f3d39627e1916c70f0 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Tue, 16 Aug 2022 22:22:52 +0200 Subject: [PATCH] Created using Colaboratory --- tutorial.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial.ipynb b/tutorial.ipynb index c39faab4b415..61641bab1833 100644 --- a/tutorial.ipynb +++ b/tutorial.ipynb @@ -1113,7 +1113,7 @@ "cell_type": "code", "source": [ "# Classification\n", - "for m in *(f'yolov5{x}.pt' for x in 'nsmlx'), 'resnet50.pt', 'efficientnet_b0.pt':\n", + "for m in [*(f'yolov5{x}.pt' for x in 'nsmlx'), 'resnet50.pt', 'efficientnet_b0.pt']:\n", " for d in 'mnist', 'fashion-mnist', 'cifar10', 'cifar100', 'imagenette160', 'imagenette320', 'imagenette', 'imagewoof160', 'imagewoof320', 'imagewoof':\n", " !python classify/train.py --model {m} --data {d} --epochs 10 --project YOLOv5-cls --name {m}-{d}" ],