Files
NexQuant/rdagent/app/qlib_rd_loop/conf.py
T

31 lines
1.6 KiB
Python
Raw Normal View History

2024-07-04 15:56:14 +08:00
from pydantic_settings import BaseSettings
2024-07-11 08:49:37 +00:00
from pathlib import Path
2024-07-04 15:56:14 +08:00
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"
2024-07-05 17:42:00 +08:00
qlib_factor_coder: str = "rdagent.scenarios.qlib.factor_task_implementation.QlibFactorCoSTEER"
2024-07-04 15:56:14 +08:00
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
2024-07-11 10:50:34 +08:00
qlib_model_scen: str = "rdagent.scenarios.qlib.experiment.model_experiment.QlibModelScenario"
qlib_model_hypothesis_gen: str = "rdagent.scenarios.qlib.model_proposal.QlibModelHypothesisGen"
qlib_model_hypothesis2experiment: str = "rdagent.scenarios.qlib.model_proposal.QlibModelHypothesis2Experiment"
qlib_model_coder: str = "rdagent.scenarios.qlib.model_task_implementation.QlibModelCoSTEER"
qlib_model_runner: str = "rdagent.scenarios.qlib.task_generator.model.QlibModelRunner"
qlib_model_summarizer: str = "rdagent.scenarios.qlib.task_generator.feedback.QlibModelHypothesisExperiment2Feedback"
2024-07-04 15:56:14 +08:00
evolving_n: int = 10
2024-07-11 08:49:37 +00:00
py_bin: str = "/usr/bin/python"
2024-07-11 11:24:41 +00:00
local_qlib_folder: Path = Path("/home/rdagent/qlib")
2024-07-11 08:49:37 +00:00
2024-07-04 15:56:14 +08:00
PROP_SETTING = PropSetting()