Build model class inheritance (#44)

* update all code

* fix a typo

---------

Co-authored-by: xuyang1 <xuyang1@microsoft.com>
This commit is contained in:
Xu Yang
2024-07-03 17:42:07 +08:00
committed by GitHub
parent ab2f61fe9d
commit d88ddc0c1c
8 changed files with 138 additions and 116 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
from rdagent.components.task_implementation.factor_implementation.factor import (
FactorTask,
)
from rdagent.components.task_implementation.model_implementation.model import ModelTask
from rdagent.core.experiment import Loader
@@ -8,5 +9,5 @@ class FactorTaskLoader(Loader[FactorTask]):
pass
class ModelTaskLoader(Loader[FactorTask]):
class ModelTaskLoader(Loader[ModelTask]):
pass