This commit is contained in:
chenxuanhong
2022-02-17 22:49:58 +08:00
parent 522cc43d1c
commit f2d448e643
2 changed files with 6 additions and 5 deletions
+3 -2
View File
@@ -5,7 +5,7 @@
# Created Date: Wednesday December 22nd 2021 # Created Date: Wednesday December 22nd 2021
# Author: Chen Xuanhong # Author: Chen Xuanhong
# Email: chenxuanhongzju@outlook.com # 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 # Modified By: Chen Xuanhong
# Copyright (c) 2021 Shanghai Jiao Tong University # Copyright (c) 2021 Shanghai Jiao Tong University
############################################################# #############################################################
@@ -542,7 +542,8 @@ class Application(tk.Frame):
for one_file in files: for one_file in files:
all_files.append(one_file.name) all_files.append(one_file.name)
self.test_com["value"] =all_files self.test_com["value"] =all_files
self.test_com.current(0) if len(all_files):
self.test_com.current(0)
def CopyPasswd(self): def CopyPasswd(self):
def copy(): def copy():
+3 -3
View File
@@ -5,7 +5,7 @@
# Created Date: Saturday July 3rd 2021 # Created Date: Saturday July 3rd 2021
# Author: Chen Xuanhong # Author: Chen Xuanhong
# Email: chenxuanhongzju@outlook.com # 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 # Modified By: Chen Xuanhong
# Copyright (c) 2021 Shanghai Jiao Tong University # Copyright (c) 2021 Shanghai Jiao Tong University
############################################################# #############################################################
@@ -34,7 +34,7 @@ def getParameters():
help="version name for train, test, finetune") 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('-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") help="checkpoint epoch for test phase or finetune phase")
# test # test
@@ -44,7 +44,7 @@ def getParameters():
choices=['localhost', '4card','8card','new4card']) 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('-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', parser.add_argument('-a', '--attr_files', type=str, default='G:\\swap_data\\ID',
help="file path for attribute images or video") help="file path for attribute images or video")