mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 23:47:46 +00:00
1b31bcd2c2
* refine class design and inheritance first version code * fix all typos --------- Co-authored-by: xuyang1 <xuyang1@microsoft.com>
13 lines
282 B
Python
13 lines
282 B
Python
from rdagent.components.task_implementation.factor_implementation.factor import (
|
|
FactorExperiment,
|
|
)
|
|
from rdagent.core.experiment import Loader
|
|
|
|
|
|
class FactorExperimentLoader(Loader[FactorExperiment]):
|
|
pass
|
|
|
|
|
|
class ModelExperimentLoader(Loader[FactorExperiment]):
|
|
pass
|