model proposal first version (#61)

* init code

* first version of model proposal
This commit is contained in:
Xu Yang
2024-07-11 10:50:34 +08:00
committed by GitHub
parent 720994c8e0
commit b1ddba388a
14 changed files with 248 additions and 50 deletions
@@ -15,12 +15,6 @@ from rdagent.utils import get_module_by_module_path
class ModelTask(Task):
# TODO: it should change when the Task changes.
name: str
description: str
formulation: str
variables: Dict[str, str] # map the variable name to the variable description
def __init__(
self, name: str, description: str, formulation: str, variables: Dict[str, str], model_type: Optional[str] = None
) -> None: