mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 15:37:44 +00:00
c17244a317
- Extract factors from financial reports loop finished. - Fix some small bugs.
105 lines
4.0 KiB
Python
105 lines
4.0 KiB
Python
import pickle
|
|
from rdagent.app.qlib_rd_loop.conf import PROP_SETTING
|
|
from rdagent.core.developer import Developer
|
|
from rdagent.core.exception import ModelEmptyException
|
|
from rdagent.core.proposal import (
|
|
Hypothesis2Experiment,
|
|
HypothesisExperiment2Feedback,
|
|
HypothesisGen,
|
|
Trace,
|
|
)
|
|
from rdagent.core.scenario import Scenario
|
|
from rdagent.core.utils import import_class
|
|
from rdagent.log import rdagent_logger as logger
|
|
|
|
# TODO: we can design a workflow that can automatically save session and traceback in the future
|
|
class Model_RD_Agent:
|
|
def __init__(self):
|
|
self.scen: Scenario = import_class(PROP_SETTING.model_scen)()
|
|
self.hypothesis_gen: HypothesisGen = import_class(PROP_SETTING.model_hypothesis_gen)(self.scen)
|
|
self.hypothesis2experiment: Hypothesis2Experiment = import_class(PROP_SETTING.model_hypothesis2experiment)()
|
|
self.qlib_model_coder: Developer = import_class(PROP_SETTING.model_coder)(self.scen)
|
|
self.qlib_model_runner: Developer = import_class(PROP_SETTING.model_runner)(self.scen)
|
|
self.qlib_model_summarizer: HypothesisExperiment2Feedback = import_class(PROP_SETTING.model_summarizer)(self.scen)
|
|
self.trace = Trace(scen=self.scen)
|
|
|
|
def generate_hypothesis(self):
|
|
hypothesis = self.hypothesis_gen.gen(self.trace)
|
|
self.dump_objects(hypothesis=hypothesis, trace=self.trace, filename='step_hypothesis.pkl')
|
|
return hypothesis
|
|
|
|
def convert_hypothesis(self, hypothesis):
|
|
exp = self.hypothesis2experiment.convert(hypothesis, self.trace)
|
|
self.dump_objects(exp=exp, hypothesis=hypothesis, trace=self.trace, filename='step_experiment.pkl')
|
|
return exp
|
|
|
|
def generate_code(self, exp):
|
|
exp = self.qlib_model_coder.develop(exp)
|
|
self.dump_objects(exp=exp, trace=self.trace, filename='step_code.pkl')
|
|
return exp
|
|
|
|
def run_experiment(self, exp):
|
|
exp = self.qlib_model_runner.develop(exp)
|
|
self.dump_objects(exp=exp, trace=self.trace, filename='step_run.pkl')
|
|
return exp
|
|
|
|
def generate_feedback(self, exp, hypothesis):
|
|
feedback = self.qlib_model_summarizer.generate_feedback(exp, hypothesis, self.trace)
|
|
self.dump_objects(exp=exp, hypothesis=hypothesis, feedback=feedback, trace=self.trace, filename='step_feedback.pkl')
|
|
return feedback
|
|
|
|
def append_to_trace(self, hypothesis, exp, feedback):
|
|
self.trace.hist.append((hypothesis, exp, feedback))
|
|
self.dump_objects(trace=self.trace, filename='step_trace.pkl')
|
|
|
|
def dump_objects(self, exp=None, hypothesis=None, feedback=None, trace=None, filename='dumped_objects.pkl'):
|
|
with open(filename, 'wb') as f:
|
|
pickle.dump((exp, hypothesis, feedback, trace or self.trace), f)
|
|
|
|
def load_objects(self, filename):
|
|
with open(filename, 'rb') as f:
|
|
return pickle.load(f)
|
|
|
|
def process_steps(agent):
|
|
# Load trace if available
|
|
try:
|
|
_, _, _, trace = agent.load_objects('step_trace.pkl')
|
|
agent.trace = trace
|
|
print(trace)
|
|
except FileNotFoundError:
|
|
pass
|
|
|
|
# Step 1: Generate hypothesis
|
|
try:
|
|
_, hypothesis, _, _ = agent.load_objects('step_hypothesis.pkl')
|
|
except FileNotFoundError:
|
|
hypothesis = agent.generate_hypothesis()
|
|
|
|
# Step 2: Convert hypothesis
|
|
try:
|
|
exp, _, _, _ = agent.load_objects('step_experiment.pkl')
|
|
except FileNotFoundError:
|
|
exp = agent.convert_hypothesis(hypothesis)
|
|
|
|
# Step 3: Generate code
|
|
try:
|
|
exp, _, _, _ = agent.load_objects('step_code.pkl')
|
|
except FileNotFoundError:
|
|
exp = agent.generate_code(exp)
|
|
|
|
# Step 4: Run experiment
|
|
try:
|
|
exp, _, _, _ = agent.load_objects('step_run.pkl')
|
|
except FileNotFoundError:
|
|
exp = agent.run_experiment(exp)
|
|
|
|
# Step 5: Generate feedback
|
|
feedback = agent.generate_feedback(exp, hypothesis)
|
|
|
|
# Step 6: Append to trace
|
|
agent.append_to_trace(hypothesis, exp, feedback)
|
|
|
|
if __name__ == "__main__":
|
|
agent = Model_RD_Agent()
|
|
process_steps(agent)
|