mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-31 09:17:43 +00:00
a2f461cc81
* Update proposal.py Completed The HypothesisFeedback Class. * refine the core code --------- Co-authored-by: xuyang1 <xuyang1@microsoft.com>
28 lines
1.0 KiB
Python
28 lines
1.0 KiB
Python
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class PropSetting(BaseSettings):
|
|
""""""
|
|
|
|
qlib_factor_scen: str = "rdagent.scenarios.qlib.experiment.factor_experiment.QlibFactorScenario"
|
|
qlib_factor_hypothesis_gen: str = "rdagent.scenarios.qlib.factor_proposal.QlibFactorHypothesisGen"
|
|
qlib_factor_hypothesis2experiment: str = "rdagent.scenarios.qlib.factor_proposal.QlibFactorHypothesis2Experiment"
|
|
qlib_factor_coder: str = "rdagent.scenarios.qlib.factor_task_implementation.QlibFactorCoSTEER"
|
|
qlib_factor_runner: str = "rdagent.scenarios.qlib.task_generator.data.QlibFactorRunner"
|
|
qlib_factor_summarizer: str = (
|
|
"rdagent.scenarios.qlib.task_generator.feedback.QlibFactorHypothesisExperiment2Feedback"
|
|
)
|
|
|
|
# TODO: model part is not finished yet
|
|
qlib_model_scen: str = ""
|
|
qlib_model_hypothesis_gen: str = ""
|
|
qlib_model_hypothesis2experiment: str = ""
|
|
qlib_model_coder: str = ""
|
|
qlib_model_runner: str = ""
|
|
qlib_model_summarizer: str = ""
|
|
|
|
evolving_n: int = 10
|
|
|
|
|
|
PROP_SETTING = PropSetting()
|