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
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_alex-0.7.21.tar.gz.
File metadata
- Download URL: automl_alex-0.7.21.tar.gz
- Upload date:
- Size: 23.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.0.0.post20200309 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6eb89a8d2f252c1133a40f272f8ae03f18b30020bff8743a8d6d05f7e2e78d24
|
|
| MD5 |
0659872e0127783216bb4e68475fd1bf
|
|
| BLAKE2b-256 |
e5e4f92f763d0a6ecc903556f32c496e4b45db076c49505dc56f87087f0475ee
|
File details
Details for the file automl_alex-0.7.21-py3-none-any.whl.
File metadata
- Download URL: automl_alex-0.7.21-py3-none-any.whl
- Upload date:
- Size: 28.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.0.0.post20200309 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5bc14fab5e32721235e468fbf164c4ee72cf3424fc64983f55194f0a9cfb7fbc
|
|
| MD5 |
c97df3ad1dc2f72feb42d9742adcceb8
|
|
| BLAKE2b-256 |
d7ade890a3ba66d4c8b525422713cd7769a5afd072a1883d223b2f43d0f6aa76
|