feat: add eda to data science scenario (#639)

* add eda to data science scenario

* fix CI
This commit is contained in:
Xu Yang
2025-02-26 22:35:44 +08:00
committed by GitHub
parent 3392a518fb
commit 2bceddf8a3
17 changed files with 107 additions and 10 deletions
@@ -70,10 +70,10 @@ class WorkflowGeneralCaseSpecEvaluator(CoSTEEREvaluator):
# mde.prepare()
# Clean the scores.csv & submission.csv.
stdout = implementation.execute(env=de, entry=f"rm submission.csv scores.csv")
implementation.execute(env=de, entry=f"rm submission.csv scores.csv")
fname = "main.py"
stdout = implementation.execute(env=de, entry=f"python {fname}")
stdout = implementation.execute(env=de, entry=f"python main.py")
stdout = re.sub(r"=== Start of EDA part ===(.*)=== End of EDA part ===", "", stdout)
# Check score file
score_fp = implementation.workspace_path / "scores.csv"