From fac39e5588878c983acdea5f87aecbbca4bf99e3 Mon Sep 17 00:00:00 2001 From: Roland Minrui <114476598+RolandMinrui@users.noreply.github.com> Date: Mon, 7 Apr 2025 14:09:36 +0800 Subject: [PATCH] remove buggy info in hypothesis rank (#762) Co-authored-by: Xu --- rdagent/scenarios/data_science/proposal/exp_gen/proposal.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/rdagent/scenarios/data_science/proposal/exp_gen/proposal.py b/rdagent/scenarios/data_science/proposal/exp_gen/proposal.py index 7157ab7b..7fcd7255 100644 --- a/rdagent/scenarios/data_science/proposal/exp_gen/proposal.py +++ b/rdagent/scenarios/data_science/proposal/exp_gen/proposal.py @@ -317,10 +317,6 @@ class DSProposalV2ExpGen(ExpGen): return json.loads(response) def hypothesis_rank(self, hypothesis_dict: dict, problem_dict: dict, pipeline: bool) -> DSHypothesis: - # TODO use rule base or llm to rank the hypothesis - if pipeline: - problem_dict = {k: v for k, v in hypothesis_dict.items() if v.get("component", "") == "Pipeline"} - weights = { "alignment_score": 0.2, "impact_score": 0.4,