mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-28 16:07:46 +00:00
4cb57b8f19
* update all code * fix a typo --------- Co-authored-by: xuyang1 <xuyang1@microsoft.com>
14 lines
339 B
Python
14 lines
339 B
Python
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
|
|
|
|
|
|
class FactorTaskLoader(Loader[FactorTask]):
|
|
pass
|
|
|
|
|
|
class ModelTaskLoader(Loader[ModelTask]):
|
|
pass
|