diff --git a/GUI.py b/GUI.py index 16e1f4d..f205cbf 100644 --- a/GUI.py +++ b/GUI.py @@ -5,7 +5,7 @@ # Created Date: Wednesday December 22nd 2021 # Author: Chen Xuanhong # Email: chenxuanhongzju@outlook.com -# Last Modified: Thursday, 10th February 2022 12:14:47 am +# Last Modified: Thursday, 17th February 2022 10:47:35 pm # Modified By: Chen Xuanhong # Copyright (c) 2021 Shanghai Jiao Tong University ############################################################# @@ -542,7 +542,8 @@ class Application(tk.Frame): for one_file in files: all_files.append(one_file.name) self.test_com["value"] =all_files - self.test_com.current(0) + if len(all_files): + self.test_com.current(0) def CopyPasswd(self): def copy(): diff --git a/test.py b/test.py index 8157120..e4eb2a6 100644 --- a/test.py +++ b/test.py @@ -5,7 +5,7 @@ # Created Date: Saturday July 3rd 2021 # Author: Chen Xuanhong # Email: chenxuanhongzju@outlook.com -# Last Modified: Thursday, 17th February 2022 7:00:12 pm +# Last Modified: Thursday, 17th February 2022 10:02:07 pm # Modified By: Chen Xuanhong # Copyright (c) 2021 Shanghai Jiao Tong University ############################################################# @@ -34,7 +34,7 @@ def getParameters(): help="version name for train, test, finetune") parser.add_argument('-c', '--cuda', type=int, default=0) # >0 if it is set as -1, program will use CPU - parser.add_argument('-s', '--checkpoint_step', type=int, default=510000, + parser.add_argument('-s', '--checkpoint_step', type=int, default=530000, help="checkpoint epoch for test phase or finetune phase") # test @@ -44,7 +44,7 @@ def getParameters(): choices=['localhost', '4card','8card','new4card']) - parser.add_argument('-i', '--id_imgs', type=str, default='G:\\swap_data\\ID\\dlrb2.jpeg') + parser.add_argument('-i', '--id_imgs', type=str, default='G:\\swap_data\\ID\\gxt3.jpeg') # parser.add_argument('-i', '--id_imgs', type=str, default='G:\\VGGFace2-HQ\\VGGface2_ffhq_align_256_9_28_512_bygfpgan\\n000002\\0027_01.jpg') parser.add_argument('-a', '--attr_files', type=str, default='G:\\swap_data\\ID', help="file path for attribute images or video")