Skip to content

Commit 5f96d5e

Browse files
committed
fix a bug caused by naming changes
1 parent 68dafb0 commit 5f96d5e

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

Dockerfile

Lines changed: 0 additions & 12 deletions
This file was deleted.

app/mlcube.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ def run(results_folder: str, submission_folder: str) -> None:
7070

7171
os.symlink(results_folder, "results")
7272
os.symlink(submission_folder, "submissions")
73-
cmd = "python3 plotter.py"
73+
cmd = "python3 plotter_pertask.py"
7474
splitted_cmd = cmd.split()
7575
process = subprocess.Popen(splitted_cmd, cwd=".")
7676
process.wait()
7777

78-
cmd = "python3 plotter_speed_2.py"
78+
cmd = "python3 plotter_overall.py"
7979
splitted_cmd = cmd.split()
8080
process = subprocess.Popen(splitted_cmd, cwd=".")
8181
process.wait()

0 commit comments

Comments
 (0)