One-call EDA + preprocessing + feature selection + plotting + advisor + tuning (robust CV).
Project description
🪶 softauto — AutoML with seatbelts
AutoML that respects small, messy, real-world datasets.
One line in → a trained pipeline, metrics, and a human-readable report out.
✨ Why softauto?
Most AutoML libraries brute-force models until something sticks.
softauto is different:
- 🧑🏫 Advisor mode – if your model underperforms, it suggests fixes (or auto-switches).
- ⚖️ Safe imbalance handling – SMOTE applied only when statistically valid, else falls back to class weights.
- 🧹 Robust preprocessing – rare category binning, outlier clipping, flexible scalers.
- 🔍 Smart feature selection – Mutual Information & RFECV options.
- 📊 Automatic reporting – HTML + plots (target distribution, missingness, correlations, feature importances).
- 🎯 Opinionated model zoo – Random Forest, GB, SVM, KNN, MLP, Ridge/Lasso, all with tuned search spaces.
🚀 Quickstart
import pandas as pd
from softauto.autorun import AutoRun
# load your dataset
df = pd.read_csv("mydata.csv")
# run softauto
run = AutoRun(df=df, target="label", task="classification")
results = run.fit()
print(results["metrics"]) # final holdout metrics
print(results["best_model_name"])# chosen model
print(results["artifacts_dir"]) # directory with reports + plots
Project details
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 softauto-0.4.0.tar.gz.
File metadata
- Download URL: softauto-0.4.0.tar.gz
- Upload date:
- Size: 15.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
461a573d2784b5255059ce4da4160da4b4134e0ea775bf1e3ba74dd1a7979d29
|
|
| MD5 |
6bef811c2ce1ea7ee1c59da4cc5d90b0
|
|
| BLAKE2b-256 |
2f62e3fd533d0c97aa7fbc27c991c269136f987fec29b11dcac3e93530bdb3c3
|
File details
Details for the file softauto-0.4.0-py3-none-any.whl.
File metadata
- Download URL: softauto-0.4.0-py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ce7ea5267cbd34ecb81f7ba9cb7a7a50c96ad0606c08e37451a00cf97df9da3
|
|
| MD5 |
2db0bb223febe87446e88794edcbe43f
|
|
| BLAKE2b-256 |
a014eb925017e9fdc7d9b7a438237b9bfa4cb5c8224c5b8e95ceb8fba46520ff
|