From 0ef5760d760900c5ecda273fb3524ed1b1a65fc6 Mon Sep 17 00:00:00 2001 From: zjut Date: Fri, 15 Nov 2024 21:48:32 +0800 Subject: [PATCH] =?UTF-8?q?test(test=5FIVF.py):=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E6=A8=A1=E5=9E=8B=E5=B9=B6=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E6=95=B0=E6=8D=AE=E9=9B=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新模型路径为 whaiFusion11-15-17-48.pth - 将测试数据集从 ["TNO","RoadScene"] 修改为 ["sar"]- 修改模型名称为 "PFCFuse 最基本版本" --- test_IVF.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test_IVF.py b/test_IVF.py index c402ae7..04e10ce 100644 --- a/test_IVF.py +++ b/test_IVF.py @@ -17,11 +17,11 @@ current_time = datetime.datetime.now().strftime("%Y%m%d_%H%M%S") os.environ["CUDA_VISIBLE_DEVICES"] = "0" -ckpt_path= r"/home/star/whaiDir/PFCFuse/models/whaiFusion10-08-16-20.pth" +ckpt_path= r"/home/star/whaiDir/PFCFuse/models/whaiFusion11-15-17-48.pth" -for dataset_name in ["TNO","RoadScene"]: +for dataset_name in ["sar"]: print("\n"*2+"="*80) - model_name="PFCFuse " + model_name="PFCFuse 最基本版本 " print("The test result of "+dataset_name+' :') test_folder = os.path.join('test_img', dataset_name) test_out_folder=os.path.join('test_result',current_time,dataset_name)