Automated Machine Learning for Supervised tasks
Project description
mljar-supervised
Automated Machine Learning
mljar-supervised is Automated Machine Learning package. It can train ML models for:
- binary classification,
- multi-class classification,
- regression.
Quick example
There is simple interface available with fit and predict methods.
import pandas as pd
from supervised.automl import AutoML
df = pd.read_csv("https://raw.githubusercontent.com/pplonski/datasets-for-start/master/adult/data.csv", skipinitialspace=True)
X = df[df.columns[:-1]]
y = df["income"]
automl = AutoML()
automl.fit(X, y)
predictions = automl.predict(X)
For details please check AutoML API Docs.
Installation
From source code:
git clone https://github.com/mljar/mljar-supervised.git
cd mljar-supervised
python setup.py install
From PyPi repository (PyPi can be not updated, it is better to install from source):
pip install mljar-supervised
Installation for development
git clone https://github.com/mljar/mljar-supervised.git
virtualenv venv --python=python3.6
source venv/bin/activate
pip install -r requirements.txt
pip install -r requirements_dev.txt
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
mljar-supervised-0.2.5.tar.gz
(37.6 kB
view details)
File details
Details for the file mljar-supervised-0.2.5.tar.gz.
File metadata
- Download URL: mljar-supervised-0.2.5.tar.gz
- Upload date:
- Size: 37.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba284cef0b09c9e7748180cabc2d0a5c0f932ab0dea1b9cafcbc2444cb7e31f6
|
|
| MD5 |
d194b0b064a6a6314ef3265a74ebebdd
|
|
| BLAKE2b-256 |
ee9b1a71176be349096a89d4dbab3ecea9f7873a27d00c4c4541d9e1eeef4db3
|