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
Copy file name to clipboardExpand all lines: src/abacustest.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
defAbacusTestArgs(parser):
15
15
parser.description="This script is used to run a testing"
16
16
parser.add_argument('-p', '--param', type=str, default="job.json",help='the job setting file, default is job.json')
17
-
parser.add_argument('-s', '--save', type=str, default=None,help='the folder where the results will be put in, default: result/date_of_today (e.g. result/20230101)')
17
+
parser.add_argument('-s', '--save', type=str, default=None,help='the folder where the results will be put in, default: result')
18
18
parser.add_argument('--override', type=int, default=1,help="when the save folder exists, if override it. 0: no, 1: yes. ")
19
19
parser.add_argument('--outinfo', type=int, default=1,help='if output detail informations, 0: no, 1: yes')
20
20
parser.add_argument('--debug',nargs='?',type=int, const=1, default=0,help="debug mode for dflow")
uploaddatahub_project: String = Field(default="",description="Please set the project where dataset will be uploaded to. If not set, will not upload")
94
-
uploaddatahub_datasetname: String = Field(default="",description="Please set the path in project where dataset will be uploaded to. If not set, will not upload")
uploadtracking_test_name: String = Field(default="",description="Please set the name of test. If not set, will not upload metrics to tracking")
98
-
uploadtracking_experiment_name: String = Field(default="",description="Please set the name of experiment. If not set, will not upload metrics to tracking")
description="Command to run each example. Please note that the program will first enter each folder before executing this command. \
52
+
During runtime, there will be no interaction between different examples",)
53
+
54
+
55
+
classPostdftCommandSet(BaseModel):
56
+
postdft_command: String=Field(default="",
57
+
description="If you need to execute some custom scripts or commands, please enter the bash command here. \
58
+
Usually used to generate some custom metrics. At this step, the program will first collect the results of all examples in rundft, and then execute the command. \
59
+
The working directory is the same level directory as the outer layer of all examples.",)
60
+
101
61
102
62
classTrackingSet(BaseModel):
103
-
Tracking_metrics: Boolean=Field(default=False,description="If tracking, will display historical metrics values based on test and experience")
104
-
Tracking_token: String=Field(default=None,description="If want to track metrics, please enter your token to access AIM")
63
+
Tracking_metrics: Boolean=Field(
64
+
default=False, description="If tracking, will display historical metrics values based on test and experience")
65
+
Tracking_token: String=Field(
66
+
default=None, description="If want to track metrics, please enter your token to access AIM")
0 commit comments