Skip to content

🔥 open-mlpipe

Production-level automated ML pipeline — from raw data to deployed model in one line.

PyPI Python GitHub Stars Downloads License
14+
ML Models
12
Pipeline Stages
1
Line of Code
106
Tests Passing

Why open-mlpipe?

Every ML project starts the same way: load data, clean it, try 10 models, pick the best one. Hours wasted. Every. Single. Time.

open-mlpipe does it all in one line of Python:

One Line. Done.

from open_mlpipe import run

# One line — full pipeline
ctx = run("dataset.csv", target="price")

# Access results
print(f"Best model: {ctx.best_model_name}")
print(f"Test R²: {ctx.metrics['test_r2']:.4f}")

🚀 Get Started in 30 Seconds

1

Install

pip install open-mlpipe

2

Run

run("data.csv")

3

Results

ctx.best_model_name

4

Predict

model.predict(new)

🤖 Supported Models

Ridge
Lasso
ElasticNet
DecisionTree
RandomForest
ExtraTrees
XGBoost
LightGBM
GradientBoosting
HistGradientBoosting
AdaBoost
KNN
SVM
Stacking
Voting
NaiveBayes

Ready to Build?

Start building production ML pipelines in minutes, not hours.

🚀 Get Started Now