Files
NexQuant/rdagent/core/proposal.py
T

157 lines
4.8 KiB
Python
Raw Normal View History

"""
"""
2024-07-18 22:36:04 +08:00
from __future__ import annotations
2024-07-04 15:56:14 +08:00
from abc import ABC, abstractmethod
2024-07-25 15:20:04 +08:00
from typing import TYPE_CHECKING, Generic, TypeVar
2024-07-05 17:42:00 +08:00
from rdagent.core.evaluation import Feedback
2024-07-18 22:36:04 +08:00
from rdagent.core.experiment import ASpecificExp, Experiment
2024-07-05 17:42:00 +08:00
from rdagent.core.scenario import Scenario
2024-07-25 15:20:04 +08:00
if TYPE_CHECKING:
from rdagent.core.prompts import Prompts
# class data_ana: XXX
class Hypothesis:
"""
TODO: We may have better name for it.
Name Candidates:
- Belief
"""
2024-08-01 14:56:03 +08:00
def __init__(
self,
hypothesis: str,
reason: str,
concise_reason: str,
concise_observation: str,
concise_justification: str,
concise_knowledge: str,
) -> None:
2024-07-04 15:56:14 +08:00
self.hypothesis: str = hypothesis
self.reason: str = reason
2024-07-24 11:33:04 +00:00
self.concise_reason: str = concise_reason
self.concise_observation: str = concise_observation
2024-08-01 14:56:03 +08:00
self.concise_justification: str = concise_justification
self.concise_knowledge: str = concise_knowledge
def __str__(self) -> str:
return f"""Hypothesis: {self.hypothesis}
2024-07-30 15:47:21 +08:00
Reason: {self.reason}
Concise Reason & Knowledge: {self.concise_reason}
Concise Observation: {self.concise_observation}
Concise Justification: {self.concise_justification}
Concise Knowledge: {self.concise_knowledge}
2024-07-30 15:47:21 +08:00
"""
# source: data_ana | model_nan = None
# Origin(path of repo/data/feedback) => view/summarization => generated Hypothesis
class HypothesisFeedback(Feedback):
2024-07-18 22:36:04 +08:00
def __init__(
self,
observations: str,
hypothesis_evaluation: str,
new_hypothesis: str,
reason: str,
2024-07-25 15:20:04 +08:00
decision: bool,
2024-07-18 22:36:04 +08:00
) -> None:
self.observations = observations
self.hypothesis_evaluation = hypothesis_evaluation
self.new_hypothesis = new_hypothesis
self.reason = reason
self.decision = decision
2024-07-18 22:36:04 +08:00
def __bool__(self) -> bool:
return self.decision
2024-07-17 15:00:13 +08:00
def __str__(self) -> str:
return f"""Observations: {self.observations}
Hypothesis Evaluation: {self.hypothesis_evaluation}
New Hypothesis: {self.new_hypothesis}
Decision: {self.decision}
Reason: {self.reason}"""
2024-07-04 15:56:14 +08:00
ASpecificScen = TypeVar("ASpecificScen", bound=Scenario)
class Trace(Generic[ASpecificScen]):
def __init__(self, scen: ASpecificScen) -> None:
self.scen: ASpecificScen = scen
2024-07-18 22:36:04 +08:00
self.hist: list[tuple[Hypothesis, Experiment, HypothesisFeedback]] = []
2024-07-25 15:20:04 +08:00
def get_sota_hypothesis_and_experiment(self) -> tuple[Hypothesis | None, Experiment | None]:
2024-07-15 11:41:22 +08:00
"""Access the last experiment result, sub-task, and the corresponding hypothesis."""
2024-07-15 11:58:41 +08:00
# TODO: The return value does not align with the signature.
for hypothesis, experiment, feedback in self.hist[::-1]:
if feedback.decision:
return hypothesis, experiment
return None, None
2024-07-17 15:00:13 +08:00
class HypothesisGen(ABC):
2024-07-24 16:56:27 +08:00
# NOTE: the design is a little wierd
# - Sometimes we want accurate access the prompts in a specific level
# - It renders the prompt to a specific abstract level
# - Sometimes we want to access the most recent level prompts
prompts: Prompts # this is a class level prompt.
2024-07-18 22:36:04 +08:00
def __init__(self, scen: Scenario) -> None:
self.scen = scen
2024-07-17 15:00:13 +08:00
@abstractmethod
def gen(self, trace: Trace) -> Hypothesis:
# def gen(self, scenario_desc: str, ) -> Hypothesis:
"""
Motivation of the variable `scenario_desc`:
- Mocking a data-scientist is observing the scenario.
scenario_desc may include:
- data observation:
- Original or derivative
- Task information:
"""
2024-07-04 15:56:14 +08:00
class Hypothesis2Experiment(ABC, Generic[ASpecificExp]):
"""
2024-07-30 17:23:05 +08:00
[Abstract description => concrete description] => Code implementation Card
"""
2024-07-04 15:56:14 +08:00
@abstractmethod
def convert(self, hypothesis: Hypothesis, trace: Trace) -> ASpecificExp:
"""Connect the idea proposal to implementation"""
...
# Boolean, Reason, Confidence, etc.
2024-07-18 22:36:04 +08:00
class HypothesisExperiment2Feedback(ABC):
""" "Generated feedbacks on the hypothesis from **Executed** Implementations of different tasks
& their comparisons with previous performances"""
2024-07-18 22:36:04 +08:00
def __init__(self, scen: Scenario) -> None:
2024-07-11 08:49:37 +00:00
self.scen = scen
2024-07-18 22:36:04 +08:00
@abstractmethod
def generate_feedback(self, exp: Experiment, hypothesis: Hypothesis, trace: Trace) -> HypothesisFeedback:
"""
2024-07-18 22:36:04 +08:00
The `exp` should be executed and the results should be included, as well as the comparison
between previous results (done by LLM).
For example: `mlflow` of Qlib will be included.
"""
2024-07-18 22:36:04 +08:00
error_message = "generate_feedback method is not implemented."
raise NotImplementedError(error_message)