AutoML tool
Project description
flashML - AutoML tool
flashML is a AutoML Python library that finds most accurate machine learning models automatically and efficiently. It frees users from selecting models and hyper-parameters for each model.
Installation
pip install flashML
Quickstart
from flashML import autoML
aml = autoML()
aml.fit(X_train, X_test, y_train, y_test, "classification", "f1_score")
Task can be either classification or regression and metric can be selected accordingly.
hyper-parameter optimization is done using optuna.
After training, use this function to get the best model:
aml.get_best_model()
You can use predict() function for custom predicitions.
aml.predict(X_val)
Change Log
0.0.1 (12/11/2021)
- First Release
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
flashML-0.0.1.tar.gz
(4.7 kB
view details)
Built Distribution
File details
Details for the file flashML-0.0.1.tar.gz
.
File metadata
- Download URL: flashML-0.0.1.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d140945dafeb74928a6aa900a8ead18a8d11131037d7feeba6ce8deacf2672b9 |
|
MD5 | d791a11ec745fc3b048356547c279d92 |
|
BLAKE2b-256 | cd75a3d8c5a0f6991a24589e6633e326ba37485f67125470d5ac5570c3bcb159 |
File details
Details for the file flashML-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: flashML-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f354e1ba1d3fa12f6e51fe6b4060b9104ddf9abd4710e553f416f0b0f94eb5b |
|
MD5 | 0ed08607ec256e97ca17cd0a3043ea84 |
|
BLAKE2b-256 | 53f79e92caee859c87b52b8915b5e06178fdf0a589471aee37f9957204075302 |