mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-28 16:07:46 +00:00
c9346a9377
* Implemented model.py - Need to run within the RDAgent folder (relevant path) - Each time copy a template & insert code & run qlib & store result back to experiment * Create model.py * Create conf.yaml This is the sample conf.yaml to be copied each time. This has gone several times of iteration and is now working for both tabular and Time-Series data. * Create read_exp.py This is to read the results within Qlib * Create ReadMe.md * Update model.py * Create test_model.py A testing file that separates model code generation and running&feedback section. * move the template folder * help xisen finish the model runner * help xisen fix improve model feedback generation * delete debug file * rename readme.md --------- Co-authored-by: Xisen Wang <118058822+Xisen-Wang@users.noreply.github.com>
39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
"""
|
|
TODO: Model Structure RD-Loop
|
|
TODO: move the following code to a new class: Model_RD_Agent
|
|
"""
|
|
|
|
# import_from
|
|
|
|
from rdagent.app.qlib_rd_loop.conf import PROP_SETTING
|
|
from rdagent.core.proposal import (
|
|
Hypothesis2Experiment,
|
|
HypothesisExperiment2Feedback,
|
|
HypothesisGen,
|
|
Trace,
|
|
)
|
|
from rdagent.core.scenario import Scenario
|
|
from rdagent.core.task_generator import TaskGenerator
|
|
from rdagent.core.utils import import_class
|
|
|
|
scen: Scenario = import_class(PROP_SETTING.qlib_model_scen)()
|
|
|
|
hypothesis_gen: HypothesisGen = import_class(PROP_SETTING.qlib_model_hypothesis_gen)(scen)
|
|
|
|
hypothesis2experiment: Hypothesis2Experiment = import_class(PROP_SETTING.qlib_model_hypothesis2experiment)()
|
|
|
|
qlib_model_coder: TaskGenerator = import_class(PROP_SETTING.qlib_model_coder)(scen)
|
|
qlib_model_runner: TaskGenerator = import_class(PROP_SETTING.qlib_model_runner)(scen)
|
|
|
|
qlib_model_summarizer: HypothesisExperiment2Feedback = import_class(PROP_SETTING.qlib_model_summarizer)(scen)
|
|
|
|
trace = Trace(scen=scen)
|
|
for _ in range(PROP_SETTING.evolving_n):
|
|
hypothesis = hypothesis_gen.gen(trace)
|
|
exp = hypothesis2experiment.convert(hypothesis, trace)
|
|
exp = qlib_model_coder.generate(exp)
|
|
exp = qlib_model_runner.generate(exp)
|
|
feedback = qlib_model_summarizer.generateFeedback(exp, hypothesis, trace)
|
|
|
|
trace.hist.append((hypothesis, exp, feedback))
|