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
Branches
Tags
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
This commit is part of merge request !318. Comments created here will be created in the context of that merge request.
......@@ -28,7 +28,7 @@ def main(parser_args):
evaluate_bootstraps=False, # plot_list=["PlotCompetitiveSkillScore"],
competitors=["test_model", "test_model2"],
competitor_path=os.path.join(os.getcwd(), "data", "comp_test"),
**parser_args.__dict__)
**parser_args.__dict__, start_script=__file__)
workflow.run()
......
......@@ -7,7 +7,7 @@ from mlair.workflows import DefaultWorkflowHPC
def main(parser_args):
workflow = DefaultWorkflowHPC(**parser_args.__dict__)
workflow = DefaultWorkflowHPC(**parser_args.__dict__, start_script=__file__)
workflow.run()
......
......@@ -22,7 +22,7 @@ def main(parser_args):
train_model=False,
create_new_model=False,
network="UBA",
plot_list=["PlotStationMap"], **parser_args.__dict__)
plot_list=["PlotStationMap"], **parser_args.__dict__, start_script=__file__)
workflow.run()
......
......@@ -19,7 +19,7 @@ def main(parser_args):
test_end="2011-12-31",
stations=["DEBW107", "DEBW013"]
)
workflow = DefaultWorkflow(**args)
workflow = DefaultWorkflow(**args, start_script=__file__)
workflow.run()
......
......@@ -36,7 +36,7 @@ def main(parser_args):
test_end="2011-12-31",
**parser_args.__dict__,
)
workflow = DefaultWorkflow(**args)
workflow = DefaultWorkflow(**args, start_script=__file__)
workflow.run()
......
......@@ -31,7 +31,7 @@ def load_stations():
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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment