mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-08-02 09:57:44 +00:00
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
|