mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 23:47:46 +00:00
a12b2fe9ee
* provide get metric direction in kaggle_crawler.py * move utils function * move statistics logic * fix CI * fix CI * fix CI * fix CI * move some tool functions * fix CI * move curves win * add compare tool * change function name * fix CI
19 lines
449 B
Python
19 lines
449 B
Python
from pydantic_settings import SettingsConfigDict
|
|
|
|
from rdagent.core.conf import ExtendedBaseSettings
|
|
|
|
|
|
class UIBasePropSetting(ExtendedBaseSettings):
|
|
model_config = SettingsConfigDict(env_prefix="UI_", protected_namespaces=())
|
|
|
|
default_log_folders: list[str] = ["./log"]
|
|
|
|
baseline_result_path: str = "./baseline.csv"
|
|
|
|
aide_path: str = "./aide"
|
|
|
|
amlt_path: str = "/data/share_folder_local/amlt"
|
|
|
|
|
|
UI_SETTING = UIBasePropSetting()
|