Files
NexQuant/rdagent/scenarios/data_science/dev/runner/__init__.py
T
you-n-g b60f5fc506 fix: refine details (#979)
* feat: add parquet preview and extract common DataFrame preview logic

* refactor: improve error messages, prompts, regex, and session loading

* lint
2025-06-23 10:38:27 +08:00

141 lines
5.5 KiB
Python

from pathlib import Path
from typing import Dict
import pandas as pd
from rdagent.app.data_science.conf import DS_RD_SETTING
from rdagent.components.coder import CoSTEER
from rdagent.components.coder.CoSTEER import CoSTEER
from rdagent.components.coder.CoSTEER.config import CoSTEER_SETTINGS
from rdagent.components.coder.CoSTEER.evaluators import (
CoSTEERMultiEvaluator,
CoSTEERSingleFeedback,
)
from rdagent.components.coder.CoSTEER.evolvable_subjects import FBWorkspace
from rdagent.components.coder.CoSTEER.evolving_strategy import (
CoSTEERQueriedKnowledge,
MultiProcessEvolvingStrategy,
)
from rdagent.components.coder.CoSTEER.task import CoSTEERTask
from rdagent.components.coder.data_science.conf import get_ds_env
from rdagent.components.coder.data_science.share.eval import ModelDumpEvaluator
from rdagent.core.exception import RunnerError
from rdagent.core.scenario import Scenario
from rdagent.log import rdagent_logger as logger
from rdagent.oai.llm_utils import APIBackend, md5_hash
from rdagent.scenarios.data_science.dev.runner.eval import DSCoSTEERCoSTEEREvaluator
from rdagent.utils.agent.ret import PythonBatchEditOut
from rdagent.utils.agent.tpl import T
from rdagent.utils.env import DockerEnv, MLEBDockerConf
class DSRunnerMultiProcessEvolvingStrategy(MultiProcessEvolvingStrategy):
def implement_one_task(
self,
target_task: CoSTEERTask,
queried_knowledge: CoSTEERQueriedKnowledge | None = None,
workspace: FBWorkspace | None = None,
prev_task_feedback: CoSTEERSingleFeedback | None = None,
) -> dict[str, str]:
if prev_task_feedback is None:
# if no prev_tak_feedback, it is the first loop; we do not make any changes and goto evaluators directly.
return {}
task_information_str = target_task.get_task_information()
# 1. code
system_prompt = T(".prompts:DSCoSTEER_debugger.system").r(
task_desc=task_information_str,
out_spec=PythonBatchEditOut.get_spec(with_del=False),
)
user_prompt = T(".prompts:DSCoSTEER_debugger.user").r(
code=workspace.all_codes,
feedback=prev_task_feedback,
)
batch_edit = PythonBatchEditOut.extract_output(
APIBackend().build_messages_and_create_chat_completion(
user_prompt=user_prompt,
system_prompt=system_prompt,
)
)
batch_edit = {k: v for k, v in batch_edit.items() if k in workspace.file_dict.keys()}
return batch_edit
def assign_code_list_to_evo(self, code_list: list[dict[str, str]], evo):
"""
Assign the code list to the evolving item.
The code list is aligned with the evolving item's sub-tasks.
If a task is not implemented, put a None in the list.
"""
for index in range(len(evo.sub_tasks)):
if code_list[index] is None:
continue
if evo.sub_workspace_list[index] is None:
# evo.sub_workspace_list[index] = FBWorkspace(target_task=evo.sub_tasks[index])
evo.sub_workspace_list[index] = evo.experiment_workspace
evo.sub_workspace_list[index].inject_files(**code_list[index])
return evo
class DSCoSTEERRunner(CoSTEER):
def __init__(
self,
scen: Scenario,
*args,
**kwargs,
) -> None:
eval_l = [DSCoSTEERCoSTEEREvaluator(scen=scen)]
if DS_RD_SETTING.enable_model_dump:
eval_l.append(ModelDumpEvaluator(scen=scen, data_type="full"))
eva = CoSTEERMultiEvaluator(
single_evaluator=eval_l, scen=scen
) # Please specify whether you agree running your eva in parallel or not
es = DSRunnerMultiProcessEvolvingStrategy(scen=scen, settings=CoSTEER_SETTINGS)
# In runner, we don't need very big loops, so we set max_loop to 3
super().__init__(
*args,
settings=CoSTEER_SETTINGS,
eva=eva,
es=es,
evolving_version=2,
scen=scen,
max_loop=DS_RD_SETTING.runner_max_loop,
**kwargs,
)
def develop(self, exp):
bak_sub_tasks = exp.sub_tasks
exp.sub_tasks = [
CoSTEERTask(
name="Debug running solution",
description=f"You'll be provided with the source code and the running and testing stdout. "
"Please check the error messages and debug the source code if any errors occur.\n"
f"Current code repo md5: {md5_hash(exp.experiment_workspace.all_codes)}",
),
]
exp = super().develop(exp) # run strategy(code implementation & evaluation loops)
exp.sub_tasks = bak_sub_tasks
# NOTE: after running the loops, we expect some results are generated
#
# 1) scores of the models and ensemble
score_fp = exp.experiment_workspace.workspace_path / "scores.csv"
if not score_fp.exists():
logger.error("Metrics file (scores.csv) is not generated.")
raise RunnerError(f"Metrics file (scores.csv) is not generated")
exp.result = pd.read_csv(score_fp, index_col=0)
# 2) if mle-bench, then the submission format checking will be used.
# DockerEnv for MLEBench submission validation
if DS_RD_SETTING.if_using_mle_data:
score_fp = exp.experiment_workspace.workspace_path / "test" / "mle_submission_format_test.output"
with score_fp.open() as f:
exp.format_check_result = f.read()
return exp