Metadata-Version: 2.1
Name: automl-alex
Version: 0.5.9
Summary: State-of-the art Automated Machine Learning python library
Home-page: https://github.com/Alex-Lekov/
Author: Alex Lekov
Author-email: itslek@yandex.ru
License: MIT
Description: 
        
        <h3 align="center">AutoML Alex</h3>
        
        <div align="center">
        
        [![License](https://img.shields.io/badge/license-MIT-blue.svg)](/LICENSE)
        [![Python](https://img.shields.io/badge/python-v3.7-blue.svg)]()
        
        </div>
        
        ---
        
        <p align="center"> State-of-the art Automated Machine Learning python library
            <br> 
        </p>
        
        
        ## Installation
        
        ```python
        pip install -i https://test.pypi.org/simple/ automl-alex==0.5.8.13
        ```
        
        
        ## 🚀 Examples
        
        ```python
        from automl_alex import AutoMLClassifier
        
        model = AutoMLClassifier(X_train, y_train, X_test,)
        predict_test, predict_train = model.fit_predict(timeout=1000,)
        ```
        More examples in the folder ./examples
        
        
        ## Features
        
        - Data preprocessing
        - Categorical feature Encoding
        - Target Encoding with cross validation
        - Cross Validation
        - Search for the best solving library 
        - Smart Optimization of Hyperparameters
        - Timelimit and EarlyStoping
        - Stacking
        
        
Keywords: machine learning,data science,automated machine learning,automl,hyperparameter optimization,artificial intelligence,ensembling,stacking,blending,deep learning,tensorflow,deeplearning,lightgbm,gradient boosting,gbm,keras
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5.*
Description-Content-Type: text/markdown
