Skip to content

caltia/AutoML_Alex

Repository files navigation

AutoML Alex

License PyPI - Python Version PyPI CodeFactor


State-of-the art Automated Machine Learning python library for Tabular Data

bench

From AutoML-Benchmark

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:

Features

  • Data preprocessing
  • Categorical feature Encoding
  • Cross Validation
  • Search for the best solving library
  • Smart Optimization of Hyperparameters (TPE)
  • Timelimit and EarlyStoping

Contact

Telegram Group: @AutoML-alex

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors