State-of-the art Automated Machine Learning python library for Tabular Data
Project description
AutoML Alex
State-of-the art Automated Machine Learning python library for Tabular Data
From AutoML-Benchmark
Scheme
Features
- Automated Data Clean (Auto Clean)
- Automated Feature Engineering (Auto FE)
- Smart Hyperparameter Optimization (HPO)
- Feature Generation
- Feature Selection
- Models Selection
- Cross Validation
- Timelimit and EarlyStoping
Installation
pip install automl-alex
🚀 Examples
Classifier:
from automl_alex import AutoMLClassifier
model = AutoMLClassifier(X_train, y_train, X_test,)
predict_test, predict_train = model.fit_predict(timeout=2000,)
Regression:
from automl_alex import AutoMLRegressor
model = AutoMLRegressor(X_train, y_train, X_test,)
predict_test, predict_train = model.fit_predict(timeout=2000,)
More examples in the folder ./examples:
- 01_Quick_Start.ipynb
- 02_Models.ipynb
- 03_Data_Cleaning_and_Encoding_(DataBunch).ipynb
- 04_ModelsReview.ipynb
- 05_BestSingleModel.ipynb
What's inside
It integrates many popular frameworks:
- scikit-learn
- XGBoost
- LightGBM
- CatBoost
- Optuna
- ...
Note:
- With a large dataset, a lot of memory is required! Library creates many new features. If you have a large dataset with a large number of features (more than 100), you may need a lot of memory.
- Do not work with timeseries and texts yet
Road Map
-
Feature Generation
-
Advanced Logging
-
New Features Generators
-
DL Encoders
-
Save/Load and Predict on New Samples
-
Add More libs (NNs)
-
Add opt Pruners
-
Build pipelines
-
Docs Site
Contact
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
automl_alex-1.2.23.tar.gz
(23.6 kB
view hashes)
Built Distribution
Close
Hashes for automl_alex-1.2.23-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 274fe1b5f579c235b5141146c378a74773492f4db9c9db3ea24d086b0511b3df |
|
MD5 | 6166eee297f1b392d99b27f351d8080c |
|
BLAKE2b-256 | e553dee2914d5c26d95c39dff8444bc0ac5eba90cb8d581314f33863c5f6c4f5 |