Awesome Automated Machine Learning (AutoML) 
Auto-sklearn is using the Python library scikit-learn which is a drop-in replacement for regular scikit-learn classifiers and regressors.
- Linux
pipIn order to check your installation, you can use:python3 -m venv autosklearn-env source autosklearn-env/bin/activate # activate pip3 install auto-sklearn
python3 -m pip show auto-sklearn # show auto-sklearn version and location python3 -m pip freeze # show all installed packages in the environment python3 -c "import auto-sklearn; auto-sklearn.show_versions()"
condaIn order to check your installation, you can use:conda create --name autosklearn-env conda activate autosklearn-env # activate conda install auto-sklearnconda list auto-sklearn # show auto-sklearn version and location python3 -c "import auto-sklearn; auto-sklearn.show_versions()"
Auto-PyTorch is based on the deep learning framework PyTorch and jointly optimizes hyperparameters and the neural architecture.
AutoKeras: An AutoML system based on Keras.
AutoKeras is based on Keras so recommend using the PyTorch backend. Please follow this page to install PyTorch.
LinuxpipIn order to check your installation, you can use:python3 -m venv autokeras-env source autokeras-env/bin/activate # activate pip3 install autokeras
condaIn order to check your installation, you can use:conda create --name autokeras-env conda activate autokeras-env # activate
You can access the my other awesome lists here
Contributions of any kind welcome, just follow the guidelines!