From 3cb0e36165c8b5c8115ecaf76de6661538eb4ee8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E4=BD=B3=E5=87=AF?= <1254589836@qq.com> Date: Thu, 11 Jul 2024 17:05:19 +0800 Subject: [PATCH] update caffe-test.sh --- 24-07/caffe/shell/caffe-test.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/24-07/caffe/shell/caffe-test.sh b/24-07/caffe/shell/caffe-test.sh index a8eafc6..13bdcb4 100644 --- a/24-07/caffe/shell/caffe-test.sh +++ b/24-07/caffe/shell/caffe-test.sh @@ -36,6 +36,11 @@ files=($(ls)) # 遍历从00到49的文件名 for i in {0..49} do + # 47-*.prototxt模型需要下载数据集,要单独测试 + if [ "$i" -eq 47 ]; then + continue + fi + # 构建文件名模式 pattern=$(printf "%02d-" $i)