mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-08-03 02:17:43 +00:00
d6ce70b551
* fix model input shape bug and costeer_model bug * fix a bug * fix a bug in docker result extraction * a system-level optimization * add a filter of stdout * update * add stdout to model * model training_hyperparameters update * quant scenario * update some quant settings * llm choose action * Thompson Sampling Bandit for action choosing * refine both scens * add trace messages for quant scen * fix some bugs * fix some bugs * update * update * update * fix * fix * fix * update for merge * fix ci * fix some bugs * fix ci * fix ci * fix ci * fix ci * refactor * default qlib4rdagent local env downloading * fix ci * fix ci * fix a bug * fix ci * fix: align all prompts on template (#908) * use template to render all prompts * fix CI --------- Co-authored-by: Xu Yang <xuyang1@microsoft.com> * add fin_quant in cli * fix a bug * fix ci * fix some bugs * refactor * remove the columns in hypothesis if no value generated in this column * fix a bug * fix ci * fix conda env * add qlib gitignore * remove existed qlib folder & install torch in qlib conda * fix workspace ui in feedback * align model config in coder and runner in docker or conda * fix CI * fix CI --------- Co-authored-by: Xu Yang <peteryang@vip.qq.com> Co-authored-by: Xu Yang <xuyang1@microsoft.com>
76 lines
2.7 KiB
Python
76 lines
2.7 KiB
Python
from pathlib import Path
|
|
|
|
from rdagent.components.coder.model_coder.model import (
|
|
ModelExperiment,
|
|
ModelFBWorkspace,
|
|
ModelTask,
|
|
)
|
|
from rdagent.core.experiment import Task
|
|
from rdagent.core.scenario import Scenario
|
|
from rdagent.scenarios.data_mining.experiment.workspace import DMFBWorkspace
|
|
from rdagent.utils.agent.tpl import T
|
|
|
|
|
|
class DMModelExperiment(ModelExperiment[ModelTask, DMFBWorkspace, ModelFBWorkspace]):
|
|
def __init__(self, *args, **kwargs) -> None:
|
|
super().__init__(*args, **kwargs)
|
|
self.experiment_workspace = DMFBWorkspace(template_folder_path=Path(__file__).parent / "model_template")
|
|
|
|
|
|
class DMModelScenario(Scenario):
|
|
@property
|
|
def background(self) -> str:
|
|
return T(".prompts:dm_model_background").r()
|
|
|
|
@property
|
|
def source_data(self) -> str:
|
|
raise NotImplementedError("source_data is not implemented")
|
|
|
|
@property
|
|
def output_format(self) -> str:
|
|
return T(".prompts:dm_model_output_format").r()
|
|
|
|
@property
|
|
def interface(self) -> str:
|
|
return T(".prompts:dm_model_interface").r()
|
|
|
|
@property
|
|
def simulator(self) -> str:
|
|
return T(".prompts:dm_model_simulator").r()
|
|
|
|
@property
|
|
def rich_style_description(self) -> str:
|
|
return """
|
|
### MIMIC-III Model Evolving Automatic R&D Demo
|
|
|
|
#### [Overview](#_summary)
|
|
|
|
The demo showcases the iterative process of hypothesis generation, knowledge construction, and decision-making in model construction in a clinical prediction task. The model should predict whether a patient would suffer from Acute Respiratory Failure (ARF) based on first 12 hours ICU monitoring data.
|
|
|
|
#### [Automated R&D](#_rdloops)
|
|
|
|
- **[R (Research)](#_research)**
|
|
- Iteration of ideas and hypotheses.
|
|
- Continuous learning and knowledge construction.
|
|
|
|
- **[D (Development)](#_development)**
|
|
- Evolving code generation and model refinement.
|
|
- Automated implementation and testing of models.
|
|
|
|
#### [Objective](#_summary)
|
|
|
|
To demonstrate the dynamic evolution of models through the R&D loop, emphasizing how each iteration enhances the model performance and reliability. The performane is measured by the AUROC score (Area Under the Receiver Operating Characteristic), which is a commonly used metric for binary classification. """
|
|
|
|
def get_scenario_all_desc(
|
|
self, task: Task | None = None, filtered_tag: str | None = None, simple_background: bool | None = None
|
|
) -> str:
|
|
return f"""Background of the scenario:
|
|
{self.background}
|
|
The interface you should follow to write the runnable code:
|
|
{self.interface}
|
|
The output of your code should be in the format:
|
|
{self.output_format}
|
|
The simulator user can use to test your model:
|
|
{self.simulator}
|
|
"""
|