-
Notifications
You must be signed in to change notification settings - Fork 0
cli reference
Takuro Tsujikawa edited this page Dec 23, 2025
·
1 revision
Run a pipeline from a YAML configuration file.
mlprep run <pipeline.yaml>| Argument | Description |
|---|---|
pipeline.yaml |
Path to the pipeline YAML file |
mlprep run pipelines/etl.yamlShow help message.
mlprep --helpOutput:
usage: mlprep [-h] {run} ...
mlprep CLI
positional arguments:
{run}
run Run a pipeline
options:
-h, --help show this help message and exit
Show version information.
mlprep --versionmlprep can also be used as a Python library:
import mlprep
# Read data
df = mlprep.read_csv("data.csv")
print(df)
# Read parquet
df = mlprep.read_parquet("data.parquet")
# Write parquet
mlprep.write_parquet(df, "output.parquet")
# Run pipeline programmatically
mlprep.run_pipeline("pipeline.yaml")