mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 23:47:46 +00:00
fce241b9f9
* Use ExtendedBaseSettings to replace BaseSettings * update a more general way to pass the default setting * update all code * fix CI * fix CI * fix qlib scenario * fix CI * fix CI * fix CI & add data science interfaces * remove redundant code * abandon costeer knowledge base v1 --------- Co-authored-by: Xu Yang <xuyang1@microsoft.com> Co-authored-by: XianBW <36835909+XianBW@users.noreply.github.com>
8 lines
217 B
Python
8 lines
217 B
Python
from rdagent.core.experiment import Task
|
|
|
|
|
|
class CoSTEERTask(Task):
|
|
def __init__(self, base_code: str = None, *args, **kwargs) -> None:
|
|
super().__init__(*args, **kwargs)
|
|
self.base_code = base_code
|