fix: align components' name (#701)

This commit is contained in:
Yuante Li
2025-03-19 11:27:43 +08:00
committed by GitHub
parent c263ece07c
commit 33e295107c
+5 -5
View File
@@ -63,13 +63,13 @@ describe: # some template to describe some object
component_description:
data_loader: |-
DataLoadSpec: |-
Loads and preprocesses competition data, ensuring proper data types, handling missing values, and providing an exploratory data analysis summary.
feature: |-
FeatureEng: |-
Transforms raw data into meaningful features while maintaining shape consistency, avoiding data leakage, and optimizing for model performance.
model: |-
Model: |-
Perform one of three tasks: model building, which develops a model to address the problem; model tuning, which optimizes an existing model for better performance; or model removal, which discards models that do not contribute effectively.
ensemble: |-
Ensemble: |-
Combines predictions from multiple models using ensemble strategies, evaluates their performance, and generates the final test predictions.
workflow: |-
Workflow: |-
Integrates all pipeline components, from data loading to ensemble prediction, ensuring efficient execution and correct output formatting.