A simple auto machine learning trainer that builds models with one function call.
Project description
ml_auto_trainer 🚀
A one-function AutoML package that builds, trains, and evaluates ML models automatically.
✨ Features
- Automatically detects problem type (classification or regression)
- Supports popular models (RandomForest, XGBoost, Logistic, Linear, KNN, GBM)
- Prints metrics automatically
🧠Usage
from ml_auto_trainer.auto_trainer import auto_train
import pandas as pd
from sklearn.datasets import load_iris
# Load data
data = load_iris()
X = pd.DataFrame(data.data, columns=data.feature_names)
y = data.target
# Train model
model = auto_train(X, y, model_name='xgboost')
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
ml_auto_trainer-0.1.0.tar.gz
(3.5 kB
view details)
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 ml_auto_trainer-0.1.0.tar.gz.
File metadata
- Download URL: ml_auto_trainer-0.1.0.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
393d4e0c396cb46c2a31f588ff4f59e4abf0f80e59a30b278afddc79f04c48df
|
|
| MD5 |
3ad43ad3291c946d7f6a3e295352087e
|
|
| BLAKE2b-256 |
4b46a34bba4e75871ab1bc688bd61bd9feb7feab2be699ac7950a26f7cb9aeac
|
File details
Details for the file ml_auto_trainer-0.1.0-py3-none-any.whl.
File metadata
- Download URL: ml_auto_trainer-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2851060a1e2f394e80c135e27d906ae2c4788885f27cf06827a7c0c196d2cb80
|
|
| MD5 |
96d8a8e8395f0871b87884dec33ceab9
|
|
| BLAKE2b-256 |
2fd3d030d729467f4eba3178a92c8b5efa7c7818d6ac7256b130b9b54d0f1141
|