Skip to main content

Jubatus Toolkit

Project description

Travis Coveralls PyPi

jubakit: Jubatus Toolkit

jubakit is a Python module to access Jubatus features easily. jubakit can be used in conjunction with scikit-learn so that you can use powerful features like cross validation and model evaluation.

Install

pip install jubakit

Requirements

  • Python 2.6, 2.7, 3.3, 3.4 or 3.5.

  • Jubatus needs to be installed.

  • Although not mandatory, installing scikit-learn is required to use some features like K-fold cross validation.

Quick Start

The following example shows how to perform train/classify using CSV dataset.

from jubakit.classifier import Classifier, Schema, Dataset, Config
from jubakit.loader.csv import CSVLoader

# Load a CSV file.
loader = CSVLoader('iris.csv')

# Define types for each column in the CSV file.
schema = Schema({
  'Species': Schema.LABEL,
}, Schema.NUMBER)

# Get the shuffled dataset.
dataset = Dataset(loader, schema).shuffle()

# Run the classifier service (`jubaclassifier` process).
classifier = Classifier.run(Config())

# Train the classifier.
for _ in classifier.train(dataset): pass

# Classify using the trained classifier.
for (idx, label, result) in classifier.classify(dataset):
  print("true label: {0}, estimated label: {1}".format(label, result[0][0]))

Examples by Topics

See the example directory for working examples.

Example

Topics

Requires scikit-learn

classifier_csv.py

Handling CSV file and numeric features

classifier_shogun.py

Handling CSV file and string features

classifier_digits.py

Handling toy dataset (digits)

classifier_libsvm.py

Handling LIBSVM file

classifier_kfold.py

K-fold cross validation and metrics

classifier_parameter.py

Finding best hyper parameter

classifier_bulk.py

Bulk Train-Test Classifier

classifier_twitter.py

Handling Twitter Streams

Concepts

  • Loader fetches data from various data sources (e.g., CSV file, RDBMS, MQ, Twitter stream, etc.) in key-value format.

  • Schema defines the data type (string feature, numeric feature, ground truth (label), etc.) for each keys of data loaded by Loader.

  • Dataset is an abstract representation of a sequence of data that binds Loader and Schema.

  • Service receives Dataset and make update/analyze RPC call to Jubatus servers.

License

MIT License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jubakit-0.1.0.tar.gz (17.0 kB view details)

Uploaded Source

File details

Details for the file jubakit-0.1.0.tar.gz.

File metadata

  • Download URL: jubakit-0.1.0.tar.gz
  • Upload date:
  • Size: 17.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for jubakit-0.1.0.tar.gz
Algorithm Hash digest
SHA256 a4b353363d42ba9737bc9a55b05e04d1ce17769fededc377bd4f3429ff8660a4
MD5 9cb05f1d0ce62fc2f9b9584efd1dce6d
BLAKE2b-256 d4dcba53bf0c0e3745ec7c4d0d5c65b1ef3fe35bba5c5f956c19a3fd5f2e99db

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page