Skip to content
Snippets Groups Projects
Commit 61f97525 authored by leufen1's avatar leufen1
Browse files

added start script argument to all run scripts

parent d9a0aee0
No related branches found
No related tags found
6 merge requests!319add all changes of dev into release v1.4.0 branch,!318Resolve "release v1.4.0",!317enabled window_lead_time=1,!316accidently pushed to wrong branch,!315Resolve "Store run script in experiment dir",!259Draft: Resolve "WRF-Datahandler should inherit from SingleStationDatahandler"
Pipeline #73874 passed
...@@ -28,7 +28,7 @@ def main(parser_args): ...@@ -28,7 +28,7 @@ def main(parser_args):
evaluate_bootstraps=False, # plot_list=["PlotCompetitiveSkillScore"], evaluate_bootstraps=False, # plot_list=["PlotCompetitiveSkillScore"],
competitors=["test_model", "test_model2"], competitors=["test_model", "test_model2"],
competitor_path=os.path.join(os.getcwd(), "data", "comp_test"), competitor_path=os.path.join(os.getcwd(), "data", "comp_test"),
**parser_args.__dict__) **parser_args.__dict__, start_script=__file__)
workflow.run() workflow.run()
......
...@@ -7,7 +7,7 @@ from mlair.workflows import DefaultWorkflowHPC ...@@ -7,7 +7,7 @@ from mlair.workflows import DefaultWorkflowHPC
def main(parser_args): def main(parser_args):
workflow = DefaultWorkflowHPC(**parser_args.__dict__) workflow = DefaultWorkflowHPC(**parser_args.__dict__, start_script=__file__)
workflow.run() workflow.run()
......
...@@ -22,7 +22,7 @@ def main(parser_args): ...@@ -22,7 +22,7 @@ def main(parser_args):
train_model=False, train_model=False,
create_new_model=False, create_new_model=False,
network="UBA", network="UBA",
plot_list=["PlotStationMap"], **parser_args.__dict__) plot_list=["PlotStationMap"], **parser_args.__dict__, start_script=__file__)
workflow.run() workflow.run()
......
...@@ -19,7 +19,7 @@ def main(parser_args): ...@@ -19,7 +19,7 @@ def main(parser_args):
test_end="2011-12-31", test_end="2011-12-31",
stations=["DEBW107", "DEBW013"] stations=["DEBW107", "DEBW013"]
) )
workflow = DefaultWorkflow(**args) workflow = DefaultWorkflow(**args, start_script=__file__)
workflow.run() workflow.run()
......
...@@ -36,7 +36,7 @@ def main(parser_args): ...@@ -36,7 +36,7 @@ def main(parser_args):
test_end="2011-12-31", test_end="2011-12-31",
**parser_args.__dict__, **parser_args.__dict__,
) )
workflow = DefaultWorkflow(**args) workflow = DefaultWorkflow(**args, start_script=__file__)
workflow.run() workflow.run()
......
...@@ -31,7 +31,7 @@ def load_stations(): ...@@ -31,7 +31,7 @@ def load_stations():
def main(parser_args): def main(parser_args):
workflow = DefaultWorkflowHPC(stations=load_stations(), **parser_args.__dict__) workflow = DefaultWorkflowHPC(stations=load_stations(), **parser_args.__dict__, start_script=__file__)
workflow.run() workflow.run()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment