1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-10 06:20:57 +08:00
Co-authored-by: LeeYuntong <nukuihayu@outlook.com>
This commit is contained in:
Lee Yuntong
2024-06-20 18:12:07 +08:00
committed by GitHub
parent 37b908792b
commit 3a348aec9f
5 changed files with 5 additions and 5 deletions

View File

@@ -41,7 +41,7 @@ def _log_task_info(task_config: dict):
def _exe_task(task_config: dict):
rec = R.get_recorder()
# model & dataset initiation
# model & dataset initialization
model: Model = init_instance_by_config(task_config["model"], accept_types=Model)
dataset: Dataset = init_instance_by_config(task_config["dataset"], accept_types=Dataset)
reweighter: Reweighter = task_config.get("reweighter", None)