A comprehensive ML library that automates the entire pipeline
Project description
AutoML - Complete Machine Learning Library
A comprehensive ML library that automates the entire pipeline: Data → EDA → Preprocessing → Split → Model → Evaluate → Predict
Installation
pip install automl-quickpipe
Quick Start
import pandas as pd
from automl import AutoML
# Load your dataset
df = pd.read_csv('your_data.csv')
# Initialize and run complete analysis
ml = AutoML(df, target_col='target_column')
ml.run_complete_analysis()
# Make predictions
new_data = [features]
ml.predict_new(new_data)
Features
- Automated EDA: Statistical summaries, missing value detection, correlation matrices, and distribution plots.
- Smart Preprocessing: Automatic handling of missing values, label encoding for categorical data, and feature scaling.
- Problem Detection: Automatically detects whether to use Classification or Regression based on the target column.
- Multiple Algorithms: Trains and compares multiple models (KNN, Decision Trees, Random Forest, SVM, etc.).
- Model Evaluation: Comprehensive metrics (Accuracy, F1-Score, R², RMSE) with cross-validation.
- Best Model Selection: Automatically identifies and uses the best-performing model for predictions.
Requirements
- numpy
- pandas
- matplotlib
- seaborn
- scikit-learn
- ipython (for Jupyter notebook support)
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file automl_quickpipe-1.0.0.tar.gz.
File metadata
- Download URL: automl_quickpipe-1.0.0.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2eb17411c09e40f43bc0d8c21f54ca7d5bdff9dfd9a41fc121f70425595bbb24
|
|
| MD5 |
66dc7564cc9e3217037f44a647c0ad67
|
|
| BLAKE2b-256 |
8106ce98e4e76697488593ea7dfc56d6ab57c9e9e22e7a589d4173e499895a1e
|
File details
Details for the file automl_quickpipe-1.0.0-py3-none-any.whl.
File metadata
- Download URL: automl_quickpipe-1.0.0-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8240b2e0b5ee5611a5fd1ebf38aae540f380465a4c3f8d610b20c3ffdaac97ee
|
|
| MD5 |
a6295cfb0c7c3127a9a9ec40c6782e51
|
|
| BLAKE2b-256 |
7887ca4307aae31c28f33f22fec597383c89a887f182feff41a0aa45ffa1f85d
|