mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 23:47:46 +00:00
fce241b9f9
* Use ExtendedBaseSettings to replace BaseSettings * update a more general way to pass the default setting * update all code * fix CI * fix CI * fix qlib scenario * fix CI * fix CI * fix CI & add data science interfaces * remove redundant code * abandon costeer knowledge base v1 --------- Co-authored-by: Xu Yang <xuyang1@microsoft.com> Co-authored-by: XianBW <36835909+XianBW@users.noreply.github.com>
20 lines
518 B
Python
20 lines
518 B
Python
from rdagent.core.conf import ExtendedBaseSettings
|
|
|
|
|
|
class BasePropSetting(ExtendedBaseSettings):
|
|
"""
|
|
The common part of the config for RD Loop to propose and development
|
|
You can add following config in the subclass to distinguish the environment variables.
|
|
"""
|
|
|
|
scen: str = ""
|
|
knowledge_base: str = ""
|
|
knowledge_base_path: str = ""
|
|
hypothesis_gen: str = ""
|
|
hypothesis2experiment: str = ""
|
|
coder: str = ""
|
|
runner: str = ""
|
|
summarizer: str = ""
|
|
|
|
evolving_n: int = 10
|