Skip to main content

mljar-supervised

Build Status PyPI version PyPI pyversions

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

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.1.tar.gz (36.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mljar_supervised-0.2.1-py3.6.egg (139.5 kB view details)

Uploaded Egg

File details

Details for the file mljar-supervised-0.2.1.tar.gz.

File metadata

  • Download URL: mljar-supervised-0.2.1.tar.gz
  • Upload date:
  • Size: 36.4 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

Hashes for mljar-supervised-0.2.1.tar.gz
Algorithm Hash digest
SHA256 2469d69625e29bdfa603bcb16c904704539a39542246206dec95a7e8a3f50e33
MD5 c4d45829dc8462cf2e4f4b2b71402faa
BLAKE2b-256 2daff9471b6e5c9e4fb60e1d57b7067c9bbeb2d14e11622187af92a283f9fc93

See more details on using hashes here.

File details

Details for the file mljar_supervised-0.2.1-py3.6.egg.

File metadata

  • Download URL: mljar_supervised-0.2.1-py3.6.egg
  • Upload date:
  • Size: 139.5 kB
  • Tags: Egg
  • 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

Hashes for mljar_supervised-0.2.1-py3.6.egg
Algorithm Hash digest
SHA256 3bd34c3748e2a4a34096bd42959255f3f16c0f4b0254d22f49512b4fa53d0724
MD5 61108fe3036f089130ffd6298f19bf4f
BLAKE2b-256 bcd9ae33ffaf31dd4d9bff7c0e62bd49238bd72edef1e73688c041d82a995042

See more details on using hashes here.

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page