API Reference¶
open_mlpipe¶
open_mlpipe.run
¶
Run the full ML pipeline on a dataset.
| PARAMETER | DESCRIPTION |
|---|---|
data
|
Path to CSV/Parquet/Excel file
TYPE:
|
target
|
Target column name (auto-detected if None)
TYPE:
|
project
|
Project name for tracking
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
|
PipelineContext with all results, metrics, and the trained model |
Source code in src\open_mlpipe\__init__.py
open_mlpipe.run_config
¶
Run the full ML pipeline from a YAML config file.
| PARAMETER | DESCRIPTION |
|---|---|
config_path
|
Path to YAML config file
TYPE:
|
project
|
Override project name (optional)
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
|
PipelineContext with all results, metrics, and the trained model |
Source code in src\open_mlpipe\__init__.py
open_mlpipe.PipelineConfig
¶
Bases: BaseModel
Full pipeline configuration.
open_mlpipe.PipelineRunner
¶
Executes a pipeline from config through all stages.
Source code in src\open_mlpipe\core\pipeline.py
Methods:¶
run
¶
Execute the full pipeline.