You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOG.logE("You have to reimplement testFly() in subclass {} if you didn't set any valid input, e.g. config.core.test_loader.".format(self.name()), exit=True)
66
+
47
67
48
68
if__name__=="__main__":
49
69
fromconfigimportconfig
@@ -55,13 +75,16 @@ def check_args(idx, argv):
55
75
config.core.model_path=sys.argv[1]
56
76
ifcheck_args(2, sys.argv):
57
77
config.test_sample_path=sys.argv[2]
78
+
ifcheck_args(3, sys.argv):
79
+
config.core.test_label_path=sys.argv[3]
58
80
59
81
if (config.core.model_pathisNone) or (config.test_sample_pathisNone):
60
82
helper='''model_path or test_sample_path not found, please check:
61
83
config.core.model_path or sys.argv[1] to init model path
62
84
config.test_sample_path or sys.argv[2] to init test sample path
85
+
config.test_label_path or sys.argv[3] to init test sample path (not required)
0 commit comments